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

r21027: Print the name we fail on. I need to fix Samba4 to pass this.

Andrew Bartlett
This commit is contained in:
Andrew Bartlett 2007-01-26 09:50:56 +00:00 committed by Gerald (Jerry) Carter
parent 5975229043
commit 5e907ae795

View File

@ -1459,7 +1459,8 @@ static struct dom_sid *name2sid(TALLOC_CTX *mem_ctx,
status = dcerpc_lsa_LookupNames(p, tmp_ctx, &l);
if (!NT_STATUS_IS_OK(status)) {
printf("LookupNames failed - %s\n", nt_errstr(status));
printf("LookupNames of %s failed - %s\n", lsa_name.string,
nt_errstr(status));
talloc_free(tmp_ctx);
return NULL;
}