diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-10-12 19:05:46 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-10-12 19:05:46 +0200 |
commit | 9f2ed1e00f586a67ab2d8c1f4770a570e6ae9740 (patch) | |
tree | 4436882b9f95831aa231a1ecde6e40a8a31c682d /source3/librpc/gen_ndr/srv_initshutdown.c | |
parent | edff62a31ebe818c62de21878359be8477d77a2f (diff) | |
download | samba-9f2ed1e00f586a67ab2d8c1f4770a570e6ae9740.tar.gz samba-9f2ed1e00f586a67ab2d8c1f4770a570e6ae9740.tar.bz2 samba-9f2ed1e00f586a67ab2d8c1f4770a570e6ae9740.zip |
Share RPC binding string utility functions.
Diffstat (limited to 'source3/librpc/gen_ndr/srv_initshutdown.c')
-rw-r--r-- | source3/librpc/gen_ndr/srv_initshutdown.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/librpc/gen_ndr/srv_initshutdown.c b/source3/librpc/gen_ndr/srv_initshutdown.c index 1fca682c71..51098074ac 100644 --- a/source3/librpc/gen_ndr/srv_initshutdown.c +++ b/source3/librpc/gen_ndr/srv_initshutdown.c @@ -56,7 +56,7 @@ static bool api_initshutdown_Init(pipes_struct *p) NDR_PRINT_OUT_DEBUG(initshutdown_Init, r); } - push = ndr_push_init_ctx(r); + push = ndr_push_init_ctx(r, NULL); if (push == NULL) { talloc_free(r); return false; @@ -129,7 +129,7 @@ static bool api_initshutdown_Abort(pipes_struct *p) NDR_PRINT_OUT_DEBUG(initshutdown_Abort, r); } - push = ndr_push_init_ctx(r); + push = ndr_push_init_ctx(r, NULL); if (push == NULL) { talloc_free(r); return false; @@ -202,7 +202,7 @@ static bool api_initshutdown_InitEx(pipes_struct *p) NDR_PRINT_OUT_DEBUG(initshutdown_InitEx, r); } - push = ndr_push_init_ctx(r); + push = ndr_push_init_ctx(r, NULL); if (push == NULL) { talloc_free(r); return false; |