From 724c9821313b5289dc6fa29bbe930c19dfd230fb Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Fri, 28 Jan 2011 23:38:21 +0100 Subject: ndr: merge duplicate ndr_map_error2ntstatus() functions. Guenther --- librpc/ndr/ndr_basic.c | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'librpc') diff --git a/librpc/ndr/ndr_basic.c b/librpc/ndr/ndr_basic.c index d628faaa9a..1d67e11e9d 100644 --- a/librpc/ndr/ndr_basic.c +++ b/librpc/ndr/ndr_basic.c @@ -1213,3 +1213,28 @@ _PUBLIC_ void ndr_print_bool(struct ndr_print *ndr, const char *name, const bool { ndr->print(ndr, "%-25s: %s", name, b?"true":"false"); } + +_PUBLIC_ NTSTATUS ndr_map_error2ntstatus(enum ndr_err_code ndr_err) +{ + switch (ndr_err) { + case NDR_ERR_SUCCESS: + return NT_STATUS_OK; + case NDR_ERR_BUFSIZE: + return NT_STATUS_BUFFER_TOO_SMALL; + case NDR_ERR_TOKEN: + return NT_STATUS_INTERNAL_ERROR; + case NDR_ERR_ALLOC: + return NT_STATUS_NO_MEMORY; + case NDR_ERR_ARRAY_SIZE: + return NT_STATUS_ARRAY_BOUNDS_EXCEEDED; + case NDR_ERR_INVALID_POINTER: + return NT_STATUS_INVALID_PARAMETER_MIX; + case NDR_ERR_UNREAD_BYTES: + return NT_STATUS_PORT_MESSAGE_TOO_LONG; + default: + break; + } + + /* we should map all error codes to different status codes */ + return NT_STATUS_INVALID_PARAMETER; +} -- cgit