From 02d2c54cd3e1a65ce4eaf1555b7f73d0a50eaec4 Mon Sep 17 00:00:00 2001 From: bellard Date: Thu, 7 Oct 2004 23:27:35 +0000 Subject: windows fixes (Gregory Alexander) git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1102 c046a42c-6fe2-441c-8c8c-71466251a162 --- slirp/tcp_input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'slirp/tcp_input.c') diff --git a/slirp/tcp_input.c b/slirp/tcp_input.c index 42f02b3e65..8729d76a7f 100644 --- a/slirp/tcp_input.c +++ b/slirp/tcp_input.c @@ -681,7 +681,7 @@ findso: goto cont_input; } - if(tcp_fconnect(so) == -1 && errno != EINPROGRESS) { + if((tcp_fconnect(so) == -1) && (errno != EINPROGRESS) && (errno != EWOULDBLOCK)) { u_char code=ICMP_UNREACH_NET; DEBUG_MISC((dfd," tcp fconnect errno = %d-%s\n", errno,strerror(errno))); -- cgit v1.2.1