r25547: Convert to standard bool type.
[sfrench/samba-autobuild/.git] / source4 / param / generic.c
index 6e9a8e60e4fc7580bc331607a5746a68a232a297..d65502c02d22321d5ded892e604f683232c19b80 100644 (file)
@@ -202,7 +202,7 @@ static bool param_pfunc (const char *name, const char *value, void *_ctx)
        if (!p) {
                p = talloc_zero(ctx->sections, struct param_opt);
                if (p == NULL)
-                       return False;
+                       return false;
 
                p->key = talloc_strdup(p, name);
                p->value = talloc_strdup(p, value);
@@ -212,7 +212,7 @@ static bool param_pfunc (const char *name, const char *value, void *_ctx)
                p->value = talloc_strdup(p, value);
        }
 
-       return True;
+       return true;
 }
 
 struct param_context *param_init(TALLOC_CTX *mem_ctx)