summaryrefslogtreecommitdiff
path: root/source4/librpc/rpc/dcerpc_schannel.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2006-03-10 10:54:37 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:56:53 -0500
commit53bbace785a1b77b7200706a66baf801b87fe120 (patch)
treec327bccd31a53f821b7ebd146fbd88e38b2f9d10 /source4/librpc/rpc/dcerpc_schannel.c
parent5e5953a4af097801a43356afe39337262e0d84f7 (diff)
downloadsamba-53bbace785a1b77b7200706a66baf801b87fe120.tar.gz
samba-53bbace785a1b77b7200706a66baf801b87fe120.tar.bz2
samba-53bbace785a1b77b7200706a66baf801b87fe120.zip
r14137: move **p2 to the _recv function for setup the second pipe
metze (This used to be commit 8b8d92beedd8848aa2c7f1443fa8e66e09c2e0bf)
Diffstat (limited to 'source4/librpc/rpc/dcerpc_schannel.c')
-rw-r--r--source4/librpc/rpc/dcerpc_schannel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/librpc/rpc/dcerpc_schannel.c b/source4/librpc/rpc/dcerpc_schannel.c
index dd9afb3a27..64dc6d3ad9 100644
--- a/source4/librpc/rpc/dcerpc_schannel.c
+++ b/source4/librpc/rpc/dcerpc_schannel.c
@@ -65,7 +65,7 @@ static void continue_epm_map_binding(struct composite_context *ctx)
return;
}
- sec_conn_req = dcerpc_secondary_connection_send(c, s->pipe, &s->pipe2,
+ sec_conn_req = dcerpc_secondary_connection_send(s->pipe,
s->binding);
if (composite_nomem(sec_conn_req, c)) return;
@@ -82,7 +82,7 @@ static void continue_secondary_connection(struct composite_context *ctx)
c = talloc_get_type(ctx->async.private_data, struct composite_context);
s = talloc_get_type(c->private_data, struct schannel_key_state);
- c->status = dcerpc_secondary_connection_recv(ctx);
+ c->status = dcerpc_secondary_connection_recv(ctx, &s->pipe2);
if (!composite_is_ok(c)) return;
auth_none_req = dcerpc_bind_auth_none_send(c, s->pipe2, &dcerpc_table_netlogon);