diff options
author | Volker Lendecke <vl@samba.org> | 2010-08-08 09:22:05 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-08-08 16:03:15 +0200 |
commit | 2d3623529fed0be2945cecfb19cef579e5af057e (patch) | |
tree | ca228e11cb6500c2ecd4469d772b08689f5f61df /source3/winbindd | |
parent | 33256d6478381af3bee9ef064566e69cb4943c39 (diff) | |
download | samba-2d3623529fed0be2945cecfb19cef579e5af057e.tar.gz samba-2d3623529fed0be2945cecfb19cef579e5af057e.tar.bz2 samba-2d3623529fed0be2945cecfb19cef579e5af057e.zip |
s3: Lift the smbd_messaging_context from rpc_pipe_open_internal
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 e9e3e6f30d..05ba7a7260 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, + winbind_messaging_context(), &cli); if (!NT_STATUS_IS_OK(status)) { DEBUG(0, ("open_samr_pipe: Could not connect to samr_pipe: %s\n", @@ -132,6 +133,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, + winbind_messaging_context(), &cli); if (!NT_STATUS_IS_OK(status)) { DEBUG(0, ("open_lsa_pipe: Could not connect to lsa_pipe: %s\n", |