summaryrefslogtreecommitdiff
path: root/source3/lib/netapi/netlogon.c
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2013-05-17 16:08:16 +0200
committerAndreas Schneider <asn@samba.org>2013-08-05 10:29:59 +0200
commitfa37bbd9d06865d265bf554a3c49920f956f2185 (patch)
treebc3f7d4e24b43162bcf833ef6148ba7dff4e2b68 /source3/lib/netapi/netlogon.c
parenta1368ca6ef8ab4f158c8b303ad058835f1bbf441 (diff)
downloadsamba-fa37bbd9d06865d265bf554a3c49920f956f2185.tar.gz
samba-fa37bbd9d06865d265bf554a3c49920f956f2185.tar.bz2
samba-fa37bbd9d06865d265bf554a3c49920f956f2185.zip
s3-libnetapi: pass down ndr_interface_table to libnetapi_get_binding_handle().
Guenther Signed-off-by: Günther Deschner <gd@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Andreas Schneider <asn@samba.org>
Diffstat (limited to 'source3/lib/netapi/netlogon.c')
-rw-r--r--source3/lib/netapi/netlogon.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/lib/netapi/netlogon.c b/source3/lib/netapi/netlogon.c
index a046fb77e9..136cb48884 100644
--- a/source3/lib/netapi/netlogon.c
+++ b/source3/lib/netapi/netlogon.c
@@ -133,7 +133,7 @@ WERROR I_NetLogonControl_r(struct libnetapi_ctx *ctx,
struct dcerpc_binding_handle *b;
werr = libnetapi_get_binding_handle(ctx, r->in.server_name,
- &ndr_table_netlogon.syntax_id,
+ &ndr_table_netlogon,
&b);
if (!W_ERROR_IS_OK(werr)) {
goto done;
@@ -190,7 +190,7 @@ WERROR I_NetLogonControl2_r(struct libnetapi_ctx *ctx,
}
werr = libnetapi_get_binding_handle(ctx, r->in.server_name,
- &ndr_table_netlogon.syntax_id,
+ &ndr_table_netlogon,
&b);
if (!W_ERROR_IS_OK(werr)) {
goto done;