diff options
author | Andrew Bartlett <abartlet@samba.org> | 2006-09-12 00:40:45 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2006-09-12 00:40:45 +0000 |
commit | dbdd89a4b96db29add839aa130c8538c9627fddc (patch) | |
tree | e68718325f264fe2bf69bdb06c78bdaf92a4a36e | |
parent | c5683746da1e6dcec74c6a8cbaccead282398a15 (diff) | |
download | samba-dbdd89a4b96db29add839aa130c8538c9627fddc.tar.gz samba-dbdd89a4b96db29add839aa130c8538c9627fddc.tar.xz samba-dbdd89a4b96db29add839aa130c8538c9627fddc.zip |
r18408: Only output a message if the async request fails.
Andrew Bartlett
-rw-r--r-- | source/torture/rpc/lsa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/torture/rpc/lsa.c b/source/torture/rpc/lsa.c index ab55f13ac53..84bc90963d6 100644 --- a/source/torture/rpc/lsa.c +++ b/source/torture/rpc/lsa.c @@ -520,8 +520,8 @@ static void lookupsids_cb(struct rpc_request *req) NTSTATUS status; status = dcerpc_ndr_request_recv(req); - DEBUG(3, ("lookupsids returned %s\n", nt_errstr(status))); if (!NT_STATUS_IS_OK(status)) { + printf("lookupsids returned %s\n", nt_errstr(status)); *replies = -1; } |