diff options
author | Michael Adam <obnox@samba.org> | 2007-09-19 12:05:47 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:30:52 -0500 |
commit | 0ed9c5569a2500939d5b268041571506656691b9 (patch) | |
tree | de253496c3400c775e16f0ef7dfdc8b79591db75 /source3/rpc_client | |
parent | c57da5d796f8bc284643679bcd8ece05394becad (diff) | |
download | samba-0ed9c5569a2500939d5b268041571506656691b9.tar.gz samba-0ed9c5569a2500939d5b268041571506656691b9.tar.bz2 samba-0ed9c5569a2500939d5b268041571506656691b9.zip |
r25225: Add a debug message.
Michael
(This used to be commit 7238884c2cb25dd9279703004ffab6618715a275)
Diffstat (limited to 'source3/rpc_client')
-rw-r--r-- | source3/rpc_client/cli_lsarpc.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source3/rpc_client/cli_lsarpc.c b/source3/rpc_client/cli_lsarpc.c index bb1b67ce1a..1e751089dd 100644 --- a/source3/rpc_client/cli_lsarpc.c +++ b/source3/rpc_client/cli_lsarpc.c @@ -171,6 +171,9 @@ static NTSTATUS rpccli_lsa_lookup_sids_noalloc(struct rpc_pipe_client *cli, lsa_io_r_lookup_sids, NT_STATUS_UNSUCCESSFUL ); + DEBUG(10, ("LSA_LOOKUPSIDS returned '%s', mapped count = %d'\n", + nt_errstr(r.status), r.mapped_count)); + if (!NT_STATUS_IS_OK(r.status) && !NT_STATUS_EQUAL(r.status, NT_STATUS_NONE_MAPPED) && !NT_STATUS_EQUAL(r.status, STATUS_SOME_UNMAPPED)) |