diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-08-04 06:00:14 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:57:46 -0500 |
commit | 79a228a35bc28d65f4ff7fcf594fc3f5a16497c9 (patch) | |
tree | 00da571dea12b13a0e11cbcf78b4f0090f1f5878 | |
parent | 60708de658f0b80f7322489a0b6e0c5b9c76a60b (diff) | |
download | samba-79a228a35bc28d65f4ff7fcf594fc3f5a16497c9.tar.gz samba-79a228a35bc28d65f4ff7fcf594fc3f5a16497c9.tar.bz2 samba-79a228a35bc28d65f4ff7fcf594fc3f5a16497c9.zip |
r1645: added a debug when a RPC fault is received
(This used to be commit cb1830909952dd0d0fed2090e820f1ee2552a7a2)
-rw-r--r-- | source4/librpc/rpc/dcerpc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source4/librpc/rpc/dcerpc.c b/source4/librpc/rpc/dcerpc.c index ea4e82f781..408ac3e27e 100644 --- a/source4/librpc/rpc/dcerpc.c +++ b/source4/librpc/rpc/dcerpc.c @@ -615,6 +615,7 @@ NTSTATUS dcerpc_request(struct dcerpc_pipe *p, } if (pkt.ptype == DCERPC_PKT_FAULT) { + DEBUG(5,("rpc fault 0x%x\n", pkt.u.fault.status)); p->last_fault_code = pkt.u.fault.status; return NT_STATUS_NET_WRITE_FAULT; } |