1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

Use the appropriate boolean constants.

Michael
This commit is contained in:
Michael Adam 2007-12-24 00:57:04 +01:00
parent 2983aba9d0
commit 45e3e2451a

View File

@ -64,14 +64,14 @@ done:
*/
bool libnet_smbconf_key_exists(const char *subkeyname)
{
bool ret = False;
bool ret = false;
WERROR werr = WERR_OK;
TALLOC_CTX *mem_ctx = talloc_stackframe();
struct registry_key *key = NULL;
werr = libnet_smbconf_open_path_q(mem_ctx, subkeyname, REG_KEY_READ, &key);
if (W_ERROR_IS_OK(werr)) {
ret = True;
ret = true;
}
TALLOC_FREE(mem_ctx);
@ -81,14 +81,14 @@ bool libnet_smbconf_key_exists(const char *subkeyname)
static bool libnet_smbconf_value_exists(struct registry_key *key,
const char *param)
{
bool ret = False;
bool ret = false;
WERROR werr = WERR_OK;
TALLOC_CTX *ctx = talloc_stackframe();
struct registry_value *value = NULL;
werr = reg_queryvalue(ctx, key, param, &value);
if (W_ERROR_IS_OK(werr)) {
ret = True;
ret = true;
}
TALLOC_FREE(ctx);