Use the proper boolean constants.
authorMichael Adam <obnox@samba.org>
Wed, 2 Jan 2008 16:08:28 +0000 (17:08 +0100)
committerMichael Adam <obnox@samba.org>
Wed, 2 Jan 2008 16:08:28 +0000 (17:08 +0100)
Michael
(This used to be commit f731fee408a809b6dc266d45e41f37e63bf4e48d)

source3/lib/util_reg_smbconf.c

index 154c67ab8fd52411a206c0106febfb44a2963c80..fa58f28d034e93b9d1bb7b88936c1ec98acfb115 100644 (file)
@@ -57,7 +57,7 @@ done:
  */
 bool registry_init_regdb(void)
 {
-       bool ret = False;
+       bool ret = false;
        int saved_errno = 0;
        static REGISTRY_HOOK smbconf_reg_hook = {KEY_SMBCONF, &smbconf_reg_ops};
 
@@ -78,7 +78,7 @@ bool registry_init_regdb(void)
                goto done;
        }
 
-       ret = True;
+       ret = true;
 
 done:
        return ret;