mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
winbind: Avoid a "ok==false"
Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
parent
c91bac5a63
commit
5eacb88831
@ -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 "
|
||||
|
Loading…
Reference in New Issue
Block a user