diff options
author | Volker Lendecke <vl@samba.org> | 2017-03-09 18:27:55 +0100 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2017-04-12 01:41:14 +0200 |
commit | 5eacb88831e8156d5a3dc3815807f5522af53c46 (patch) | |
tree | 8dcbab05c8d303d07182aff62dce7881a4dba9d4 /source3/winbindd | |
parent | c91bac5a63124bb33a7048e91fe1c27864251a3e (diff) | |
download | samba-5eacb88831e8156d5a3dc3815807f5522af53c46.tar.gz |
winbind: Avoid a "ok==false"
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3/winbindd')
-rw-r--r-- | source3/winbindd/winbindd_util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/winbindd/winbindd_util.c b/source3/winbindd/winbindd_util.c index ee6ca6050ae..d2a091ad1dd 100644 --- a/source3/winbindd/winbindd_util.c +++ b/source3/winbindd/winbindd_util.c @@ -854,7 +854,7 @@ bool init_domain_list(void) */ ok = migrate_secrets_tdb_to_ldb(domain); - if (ok == false) { + if (!ok) { DEBUG(0, ("Failed to migrate our own, " "local AD domain join password for " "winbindd's internal use into " @@ -865,7 +865,7 @@ bool init_domain_list(void) current_nt_hash.hash, &account_name, &sec_chan_type); - if (ok == false) { + if (!ok) { DEBUG(0, ("Failed to find our our own, just " "written local AD domain join " "password for winbindd's internal " |