diff options
author | Volker Lendecke <vl@samba.org> | 2010-08-16 11:01:26 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-08-18 11:18:23 +0200 |
commit | 4b5e252354660501576c8452f48514852f40270e (patch) | |
tree | 16f112b0719f6252bd833f7a759f33bff1397abb /source3/winbindd | |
parent | 6d10684556e9f9e847ec03dd8af057e8d4558e35 (diff) | |
download | samba-4b5e252354660501576c8452f48514852f40270e.tar.gz samba-4b5e252354660501576c8452f48514852f40270e.tar.bz2 samba-4b5e252354660501576c8452f48514852f40270e.zip |
s3: Add "client_id" to pipes_struct
Diffstat (limited to 'source3/winbindd')
-rw-r--r-- | source3/winbindd/winbindd_samr.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/winbindd/winbindd_samr.c b/source3/winbindd/winbindd_samr.c index 05ba7a7260..f4d84fb132 100644 --- a/source3/winbindd/winbindd_samr.c +++ b/source3/winbindd/winbindd_samr.c @@ -61,6 +61,7 @@ static NTSTATUS open_internal_samr_pipe(TALLOC_CTX *mem_ctx, status = rpc_pipe_open_internal(mem_ctx, &ndr_table_samr.syntax_id, server_info, + NULL, winbind_messaging_context(), &cli); if (!NT_STATUS_IS_OK(status)) { @@ -133,6 +134,7 @@ static NTSTATUS open_internal_lsa_pipe(TALLOC_CTX *mem_ctx, status = rpc_pipe_open_internal(mem_ctx, &ndr_table_lsarpc.syntax_id, server_info, + NULL, winbind_messaging_context(), &cli); if (!NT_STATUS_IS_OK(status)) { |