1
0
mirror of https://github.com/samba-team/samba.git synced 2025-12-16 00:23:52 +03:00

r25547: Convert to standard bool type.

(This used to be commit 97a241692c)
This commit is contained in:
Jelmer Vernooij
2007-10-06 21:39:52 +00:00
committed by Gerald (Jerry) Carter
parent cac2379a2f
commit d5a93dfcb9
8 changed files with 59 additions and 59 deletions

View 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)