diff options
-rw-r--r-- | source4/build/pidl/server.pm | 2 | ||||
-rw-r--r-- | source4/librpc/rpc/dcerpc.c | 14 |
2 files changed, 3 insertions, 13 deletions
diff --git a/source4/build/pidl/server.pm b/source4/build/pidl/server.pm index aa44d9cbb2..2c590ea642 100644 --- a/source4/build/pidl/server.pm +++ b/source4/build/pidl/server.pm @@ -102,7 +102,7 @@ pidl " } if (dce_call->fault_code != 0) { - return dcerpc_map_fault2ntstatus(dce_call->fault_code); + return NT_STATUS_NET_WRITE_FAULT; } return NT_STATUS_OK; } diff --git a/source4/librpc/rpc/dcerpc.c b/source4/librpc/rpc/dcerpc.c index edd0469d6e..438a9a4cf3 100644 --- a/source4/librpc/rpc/dcerpc.c +++ b/source4/librpc/rpc/dcerpc.c @@ -95,16 +95,6 @@ void dcerpc_set_auth_length(DATA_BLOB *blob, uint16_t v) } } -NTSTATUS dcerpc_map_fault2ntstatus(uint32_t fault_code) -{ - switch (fault_code) { - case DCERPC_FAULT_LOGON_FAILURE: - return NT_STATUS_LOGON_FAILURE; - } - - return NT_STATUS_NET_WRITE_FAULT; -} - /* parse a data blob into a dcerpc_packet structure. This handles both input and output packets @@ -626,7 +616,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 dcerpc_map_fault2ntstatus(pkt.u.fault.status); + return NT_STATUS_NET_WRITE_FAULT; } if (pkt.ptype != DCERPC_PKT_RESPONSE) { @@ -661,7 +651,7 @@ NTSTATUS dcerpc_request(struct dcerpc_pipe *p, if (pkt.ptype == DCERPC_PKT_FAULT) { p->last_fault_code = pkt.u.fault.status; - return dcerpc_map_fault2ntstatus(pkt.u.fault.status); + return NT_STATUS_NET_WRITE_FAULT; } if (pkt.ptype != DCERPC_PKT_RESPONSE) { |