From fa37bbd9d06865d265bf554a3c49920f956f2185 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Fri, 17 May 2013 16:08:16 +0200 Subject: s3-libnetapi: pass down ndr_interface_table to libnetapi_get_binding_handle(). MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Guenther Signed-off-by: Günther Deschner Reviewed-by: Stefan Metzmacher Reviewed-by: Andreas Schneider --- source3/lib/netapi/netlogon.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/lib/netapi/netlogon.c') 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; -- cgit