diff options
author | Günther Deschner <gd@samba.org> | 2013-05-17 16:10:13 +0200 |
---|---|---|
committer | Andreas Schneider <asn@samba.org> | 2013-08-05 10:29:59 +0200 |
commit | 77f7f2a976e5b95f3bd9f542b92926adee4f5fa6 (patch) | |
tree | 3bdbf7fb9d3744b2ad49edc2715ad3ad62181628 /source3/lib/netapi/localgroup.c | |
parent | fa37bbd9d06865d265bf554a3c49920f956f2185 (diff) | |
download | samba-77f7f2a976e5b95f3bd9f542b92926adee4f5fa6.tar.gz samba-77f7f2a976e5b95f3bd9f542b92926adee4f5fa6.tar.bz2 samba-77f7f2a976e5b95f3bd9f542b92926adee4f5fa6.zip |
s3-libnetapi: pass down ndr_interface_table to libnetapi_open_pipe().
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/localgroup.c')
-rw-r--r-- | source3/lib/netapi/localgroup.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/source3/lib/netapi/localgroup.c b/source3/lib/netapi/localgroup.c index 1a544adecd..6501eddcc6 100644 --- a/source3/lib/netapi/localgroup.c +++ b/source3/lib/netapi/localgroup.c @@ -179,7 +179,7 @@ WERROR NetLocalGroupAdd_r(struct libnetapi_ctx *ctx, } werr = libnetapi_open_pipe(ctx, r->in.server_name, - &ndr_table_samr.syntax_id, + &ndr_table_samr, &pipe_cli); if (!W_ERROR_IS_OK(werr)) { goto done; @@ -313,7 +313,7 @@ WERROR NetLocalGroupDel_r(struct libnetapi_ctx *ctx, ZERO_STRUCT(alias_handle); werr = libnetapi_open_pipe(ctx, r->in.server_name, - &ndr_table_samr.syntax_id, + &ndr_table_samr, &pipe_cli); if (!W_ERROR_IS_OK(werr)) { goto done; @@ -493,7 +493,7 @@ WERROR NetLocalGroupGetInfo_r(struct libnetapi_ctx *ctx, ZERO_STRUCT(alias_handle); werr = libnetapi_open_pipe(ctx, r->in.server_name, - &ndr_table_samr.syntax_id, + &ndr_table_samr, &pipe_cli); if (!W_ERROR_IS_OK(werr)) { goto done; @@ -672,7 +672,7 @@ WERROR NetLocalGroupSetInfo_r(struct libnetapi_ctx *ctx, ZERO_STRUCT(alias_handle); werr = libnetapi_open_pipe(ctx, r->in.server_name, - &ndr_table_samr.syntax_id, + &ndr_table_samr, &pipe_cli); if (!W_ERROR_IS_OK(werr)) { goto done; @@ -822,7 +822,7 @@ WERROR NetLocalGroupEnum_r(struct libnetapi_ctx *ctx, ZERO_STRUCT(alias_handle); werr = libnetapi_open_pipe(ctx, r->in.server_name, - &ndr_table_samr.syntax_id, + &ndr_table_samr, &pipe_cli); if (!W_ERROR_IS_OK(werr)) { goto done; @@ -1135,7 +1135,7 @@ static WERROR NetLocalGroupModifyMembers_r(struct libnetapi_ctx *ctx, if (r->in.level == 3) { werr = libnetapi_open_pipe(ctx, r->in.server_name, - &ndr_table_lsarpc.syntax_id, + &ndr_table_lsarpc, &lsa_pipe); if (!W_ERROR_IS_OK(werr)) { goto done; @@ -1154,7 +1154,7 @@ static WERROR NetLocalGroupModifyMembers_r(struct libnetapi_ctx *ctx, } werr = libnetapi_open_pipe(ctx, r->in.server_name, - &ndr_table_samr.syntax_id, + &ndr_table_samr, &pipe_cli); if (!W_ERROR_IS_OK(werr)) { goto done; |