summaryrefslogtreecommitdiff
path: root/source3/librpc/ndr/ndr_sec.h
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2007-11-09 13:00:43 +0100
committerStefan Metzmacher <metze@samba.org>2007-11-09 21:23:15 +0100
commit909b03d3c669b655802d7819ee8785562e1c711e (patch)
tree509df0006387edb795aa2c7de36a920b34c8ad77 /source3/librpc/ndr/ndr_sec.h
parent427b48a92c8d0da35e551f4469ef10c1cb08061c (diff)
downloadsamba-909b03d3c669b655802d7819ee8785562e1c711e.tar.gz
samba-909b03d3c669b655802d7819ee8785562e1c711e.tar.bz2
samba-909b03d3c669b655802d7819ee8785562e1c711e.zip
ndr: change NTSTAUS into enum ndr_err_code (samba3 handwritten stuff)
ndr_misc.c ndr_sec.h ndr_sec_helper.c librpc/ndr/sid.c metze (This used to be commit 42590e917af464f894bf4eb1490f0d1075b2c10e)
Diffstat (limited to 'source3/librpc/ndr/ndr_sec.h')
-rw-r--r--source3/librpc/ndr/ndr_sec.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/librpc/ndr/ndr_sec.h b/source3/librpc/ndr/ndr_sec.h
index 0858eac72c..8034367223 100644
--- a/source3/librpc/ndr/ndr_sec.h
+++ b/source3/librpc/ndr/ndr_sec.h
@@ -24,10 +24,10 @@ char *dom_sid_string(TALLOC_CTX *mem_ctx, const struct dom_sid *sid);
/* The following definitions come from librpc/ndr/ndr_sec.c */
-NTSTATUS ndr_pull_dom_sid2(struct ndr_pull *ndr, int ndr_flags, struct dom_sid *sid);
-NTSTATUS ndr_push_dom_sid2(struct ndr_push *ndr, int ndr_flags, const struct dom_sid *sid);
-NTSTATUS ndr_pull_dom_sid28(struct ndr_pull *ndr, int ndr_flags, struct dom_sid *sid);
-NTSTATUS ndr_push_dom_sid28(struct ndr_push *ndr, int ndr_flags, const struct dom_sid *sid);
+enum ndr_err_code ndr_pull_dom_sid2(struct ndr_pull *ndr, int ndr_flags, struct dom_sid *sid);
+enum ndr_err_code ndr_push_dom_sid2(struct ndr_push *ndr, int ndr_flags, const struct dom_sid *sid);
+enum ndr_err_code ndr_pull_dom_sid28(struct ndr_pull *ndr, int ndr_flags, struct dom_sid *sid);
+enum ndr_err_code ndr_push_dom_sid28(struct ndr_push *ndr, int ndr_flags, const struct dom_sid *sid);
#undef _PRINTF_ATTRIBUTE
#define _PRINTF_ATTRIBUTE(a1, a2)