1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-01 04:58:35 +03:00

dssync keytab: add debugging output when skipping an object.

Michael
(This used to be commit f3c110097f2f6c5dd329f2ca595644c6a368a552)
This commit is contained in:
Michael Adam 2008-07-29 10:17:15 +02:00
parent 18976c0129
commit 8003c93a27

View File

@ -242,7 +242,13 @@ static NTSTATUS parse_object(TALLOC_CTX *mem_ctx,
}
}
if (!got_pwd || !name) {
if (!name) {
DEBUG(10, ("no name (sAMAccountName) found - skipping.\n"));
return NT_STATUS_OK;
}
if (!got_pwd) {
DEBUG(10, ("no password (unicodePwd) found - skipping.\n"));
return NT_STATUS_OK;
}