1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-12 09:18:10 +03:00

Use the proper boolean constants.

Michael
This commit is contained in:
Michael Adam 2008-01-02 17:08:28 +01:00
parent fa669b307c
commit f731fee408

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