]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
Use the proper boolean functions.
authorMichael Adam <obnox@samba.org>
Tue, 15 Jan 2008 13:56:00 +0000 (14:56 +0100)
committerMichael Adam <obnox@samba.org>
Tue, 15 Jan 2008 13:56:00 +0000 (14:56 +0100)
Michael

source/registry/reg_api.c

index 1479e7ad0ad643d69edbd8ad226632bfc14c8b4b..d1657c8cf6075fb260234b2afd2f46942566e8be 100644 (file)
@@ -742,7 +742,7 @@ WERROR reg_deletekey_recursive_internal(TALLOC_CTX *ctx,
        {
                werr = reg_deletekey_recursive_internal(mem_ctx, key,
                                                        subkey_name,
-                                                       True);
+                                                       true);
                if (!W_ERROR_IS_OK(werr)) {
                        goto done;
                }
@@ -770,12 +770,12 @@ WERROR reg_deletekey_recursive(TALLOC_CTX *ctx,
                               struct registry_key *parent,
                               const char *path)
 {
-       return reg_deletekey_recursive_internal(ctx, parent, path, True);
+       return reg_deletekey_recursive_internal(ctx, parent, path, true);
 }
 
 WERROR reg_deletesubkeys_recursive(TALLOC_CTX *ctx,
                                   struct registry_key *parent,
                                   const char *path)
 {
-       return reg_deletekey_recursive_internal(ctx, parent, path, False);
+       return reg_deletekey_recursive_internal(ctx, parent, path, false);
 }