1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-03 13:47:25 +03:00

r11808: Fix socket_connect_ev

(This used to be commit 95bd3ffaf7efb117206c83f7c75c302b54e6d059)
This commit is contained in:
Volker Lendecke 2005-11-20 16:27:41 +00:00 committed by Gerald (Jerry) Carter
parent b03f5c4478
commit 218ea5a5c7

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);