1
0
mirror of https://github.com/moparisthebest/wget synced 2024-07-03 16:38:41 -04:00

[svn] Don't call select_fd unless timeout is desired.

This commit is contained in:
hniksic 2003-11-01 06:01:53 -08:00
parent 9d9e242e5d
commit 7ec83a1b2a
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2003-11-01 Hrvoje Niksic <hniksic@xemacs.org>
* connect.c (acceptport): Don't call select_fd when timeout is not
requested.
2003-11-01 Hrvoje Niksic <hniksic@xemacs.org>
* host.c: Removed the ip_default_family global variable.

View File

@ -511,8 +511,9 @@ acceptport (int local_sock, int *sock)
socklen_t addrlen = sizeof (ss);
#ifdef HAVE_SELECT
if (select_fd (local_sock, opt.connect_timeout, 0) <= 0)
return ACCEPTERR;
if (opt.connect_timeout)
if (select_fd (local_sock, opt.connect_timeout, 0) <= 0)
return ACCEPTERR;
#endif
if ((*sock = accept (local_sock, sa, &addrlen)) < 0)
return ACCEPTERR;