View | Details | Raw Unified | Return to bug 408
Collapse All | Expand All

(-)channels.c (-1 / +2 lines)
Lines 2281-2287 Link Here
2281
		}
2281
		}
2282
		sock = socket(ai->ai_family, SOCK_STREAM, 0);
2282
		sock = socket(ai->ai_family, SOCK_STREAM, 0);
2283
		if (sock < 0) {
2283
		if (sock < 0) {
2284
			error("socket: %.100s", strerror(errno));
2284
			if (ai->next == NULL || errno != EPROTONOSUPPORT)
2285
				error("socket: %.100s", strerror(errno));
2285
			continue;
2286
			continue;
2286
		}
2287
		}
2287
		if (fcntl(sock, F_SETFL, O_NONBLOCK) < 0)
2288
		if (fcntl(sock, F_SETFL, O_NONBLOCK) < 0)

Return to bug 408