diff options
-rw-r--r-- | source4/librpc/rpc/dcerpc_auth.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/librpc/rpc/dcerpc_auth.c b/source4/librpc/rpc/dcerpc_auth.c index 0714c93a61..2d60d38732 100644 --- a/source4/librpc/rpc/dcerpc_auth.c +++ b/source4/librpc/rpc/dcerpc_auth.c @@ -154,7 +154,7 @@ static void bind_auth_next_step(struct composite_context *c) state->pipe->inhibit_timeout_processing = true; state->pipe->timed_out = false; - c->status = gensec_update(sec->generic_state, state, + c->status = gensec_update_ev(sec->generic_state, state, state->pipe->conn->event_ctx, sec->auth_info->credentials, &state->credentials); @@ -375,7 +375,7 @@ struct composite_context *dcerpc_bind_auth_send(TALLOC_CTX *mem_ctx, state->pipe->inhibit_timeout_processing = true; state->pipe->timed_out = false; - c->status = gensec_update(sec->generic_state, state, + c->status = gensec_update_ev(sec->generic_state, state, p->conn->event_ctx, sec->auth_info->credentials, &state->credentials); |