From 34e8945cb5d0568e511708779d2c33cc59ed54e1 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sat, 3 Jan 2009 19:23:13 +0100 Subject: Actually do a non-blocking connect.... :-) --- source3/lib/async_sock.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/lib/async_sock.c b/source3/lib/async_sock.c index 107d1402fc..f755f7ac58 100644 --- a/source3/lib/async_sock.c +++ b/source3/lib/async_sock.c @@ -636,7 +636,7 @@ struct async_req *async_connect(TALLOC_CTX *mem_ctx, struct event_context *ev, return NULL; } - set_blocking(fd, true); + set_blocking(fd, false); state->result.result_int = connect(fd, address, address_len); -- cgit