diff options
author | Volker Lendecke <vl@samba.org> | 2009-11-08 12:31:38 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-11-08 13:12:16 +0100 |
commit | 5fc9d93408effe75abcd231c45cbc14656692ebe (patch) | |
tree | 03de463e98efebfc0b3f290abc1202fd6ff3ae7d /source3/lib/netapi/netlogon.c | |
parent | 53f2a1595e76db9fe1b42db65b51895b73365993 (diff) | |
download | samba-5fc9d93408effe75abcd231c45cbc14656692ebe.tar.gz samba-5fc9d93408effe75abcd231c45cbc14656692ebe.tar.xz samba-5fc9d93408effe75abcd231c45cbc14656692ebe.zip |
s3: Make libnetapi_open_pipe take strings instead of a ndr_interface_table
Diffstat (limited to 'source3/lib/netapi/netlogon.c')
-rw-r--r-- | source3/lib/netapi/netlogon.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/lib/netapi/netlogon.c b/source3/lib/netapi/netlogon.c index 082938cadc..4f421eafb3 100644 --- a/source3/lib/netapi/netlogon.c +++ b/source3/lib/netapi/netlogon.c @@ -129,7 +129,7 @@ WERROR I_NetLogonControl_r(struct libnetapi_ctx *ctx, union netr_CONTROL_QUERY_INFORMATION query; werr = libnetapi_open_pipe(ctx, r->in.server_name, - &ndr_table_netlogon.syntax_id, + NDR_NETLOGON_UUID, NDR_NETLOGON_VERSION, &pipe_cli); if (!W_ERROR_IS_OK(werr)) { goto done; @@ -183,7 +183,7 @@ WERROR I_NetLogonControl2_r(struct libnetapi_ctx *ctx, } werr = libnetapi_open_pipe(ctx, r->in.server_name, - &ndr_table_netlogon.syntax_id, + NDR_NETLOGON_UUID, NDR_NETLOGON_VERSION, &pipe_cli); if (!W_ERROR_IS_OK(werr)) { goto done; |