From f731fee408a809b6dc266d45e41f37e63bf4e48d Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Wed, 2 Jan 2008 17:08:28 +0100 Subject: [PATCH] Use the proper boolean constants. Michael --- source/lib/util_reg_smbconf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/lib/util_reg_smbconf.c b/source/lib/util_reg_smbconf.c index 154c67ab8fd..fa58f28d034 100644 --- a/source/lib/util_reg_smbconf.c +++ b/source/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;