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:
parent
fa669b307c
commit
f731fee408
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user