1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-03 04:22:09 +03:00

r11808: Fix socket_connect_ev

This commit is contained in:
Volker Lendecke
2005-11-20 16:27:41 +00:00
committed by Gerald (Jerry) Carter
parent 1875c4808f
commit 95bd3ffaf7

View File

@ -147,9 +147,9 @@ static void socket_connect_recv_addr(struct composite_context *ctx)
{
struct connect_state *state =
talloc_get_type(ctx->async.private_data, struct connect_state);
const char *addr;
state->ctx->status = resolve_name_recv(ctx, state, &addr);
state->ctx->status = resolve_name_recv(ctx, state,
&state->server_address);
if (!composite_is_ok(state->ctx)) return;
ctx = talloc_zero(state, struct composite_context);