summaryrefslogtreecommitdiff
path: root/source4/librpc/ndr
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2007-11-09 19:23:57 +0100
committerStefan Metzmacher <metze@samba.org>2007-12-21 05:44:55 +0100
commit0ce646d49a70b19d7ca54e0b83422f048dd39c1a (patch)
treec7d99b5727658a016c9f7127ec6c02a97ed07af1 /source4/librpc/ndr
parentafa5f256e9023332a50a410b53e3c1c94af0e85a (diff)
downloadsamba-0ce646d49a70b19d7ca54e0b83422f048dd39c1a.tar.gz
samba-0ce646d49a70b19d7ca54e0b83422f048dd39c1a.tar.bz2
samba-0ce646d49a70b19d7ca54e0b83422f048dd39c1a.zip
r25917: ndr: move ndr_map_error2ntstatus to errormap.c
metze (This used to be commit 8fc2e7737fc15f7265816f077e2a48a7a98f75b8)
Diffstat (limited to 'source4/librpc/ndr')
-rw-r--r--source4/librpc/ndr/ndr.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/source4/librpc/ndr/ndr.c b/source4/librpc/ndr/ndr.c
index 4ea36f82c8..6a1850624b 100644
--- a/source4/librpc/ndr/ndr.c
+++ b/source4/librpc/ndr/ndr.c
@@ -353,31 +353,6 @@ _PUBLIC_ void ndr_set_flags(uint32_t *pflags, uint32_t new_flags)
(*pflags) |= new_flags;
}
-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;
-}
-
/*
return and possibly log an NDR error
*/