1 https://bugzilla.redhat.com/attachment.cgi?id=265091
3 This fixes somewhat reversed logic of trying to connect to WHOIS server.
4 Tue Nov 20 2007, Lubomir Kundrak <lkundrak@redhat.com>
6 --- jwhois-4.0/src/utils.c.connect 2007-06-26 09:00:20.000000000 +0200
7 +++ jwhois-4.0/src/utils.c 2007-11-20 17:05:33.000000000 +0100
8 @@ -247,7 +247,7 @@ make_connect(const char *host, int port)
13 + for (; res; res = res->ai_next)
16 sockfd = socket(res->ai_family, res->ai_socktype, res->ai_protocol);
17 @@ -266,15 +266,15 @@ make_connect(const char *host, int port)
18 flags = fcntl(sockfd, F_GETFL, 0);
19 if (fcntl(sockfd, F_SETFL, flags|O_NONBLOCK) == -1)
26 error = connect(sockfd, res->ai_addr, res->ai_addrlen);
28 if (error < 0 && errno != EINPROGRESS)
36 @@ -283,18 +283,20 @@ make_connect(const char *host, int port)
37 error = select(FD_SETSIZE, NULL, &fdset, NULL, &timeout);
45 retlen = sizeof(retval);
46 error = getsockopt(sockfd, SOL_SOCKET, SO_ERROR, &retval, &retlen);
47 if (error < 0 || retval)
57 - if (error < 0 || retval) return -1;