diff options
author | Michael Adam <obnox@samba.org> | 2008-01-02 17:08:28 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-01-02 17:08:28 +0100 |
commit | a5d2449fe1f25d74ac3a3d4eae66c43cd8dcbde9 (patch) | |
tree | f282dbc7567ce79dea1db1297bb172111236a644 | |
parent | 4656265a2337db1ef99769a6b30c0cf04fdd6cff (diff) | |
download | samba-a5d2449fe1f25d74ac3a3d4eae66c43cd8dcbde9.tar.gz samba-a5d2449fe1f25d74ac3a3d4eae66c43cd8dcbde9.tar.bz2 samba-a5d2449fe1f25d74ac3a3d4eae66c43cd8dcbde9.zip |
Use the proper boolean constants.
Michael
(This used to be commit f731fee408a809b6dc266d45e41f37e63bf4e48d)
-rw-r--r-- | source3/lib/util_reg_smbconf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/lib/util_reg_smbconf.c b/source3/lib/util_reg_smbconf.c index 154c67ab8f..fa58f28d03 100644 --- a/source3/lib/util_reg_smbconf.c +++ b/source3/lib/util_reg_smbconf.c @@ -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; |