summaryrefslogtreecommitdiff
path: root/source3/lib/netapi/getdc.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/getdc.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/getdc.c')
-rw-r--r--source3/lib/netapi/getdc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/lib/netapi/getdc.c b/source3/lib/netapi/getdc.c
index 3b26d46db4..ae976f1f02 100644
--- a/source3/lib/netapi/getdc.c
+++ b/source3/lib/netapi/getdc.c
@@ -47,7 +47,7 @@ WERROR NetGetDCName_r(struct libnetapi_ctx *ctx,
void *buffer;
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;
@@ -101,7 +101,7 @@ WERROR NetGetAnyDCName_r(struct libnetapi_ctx *ctx,
void *buffer;
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;
@@ -173,7 +173,7 @@ WERROR DsGetDcName_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;