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

r1645: added a debug when a RPC fault is received

(This used to be commit cb1830909952dd0d0fed2090e820f1ee2552a7a2)
This commit is contained in:
Andrew Tridgell 2004-08-04 06:00:14 +00:00 committed by Gerald (Jerry) Carter
parent 60708de658
commit 79a228a35b

View File

@ -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;
}