From: wessels <> Date: Wed, 4 Jun 1997 13:02:55 +0000 (+0000) Subject: compiler X-Git-Tag: SQUID_3_0_PRE1~4946 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cb2f803aba361fb53465720cc062e84492f88490;p=thirdparty%2Fsquid.git compiler --- diff --git a/src/comm.cc b/src/comm.cc index 7a211a2d32..5b5ba8d353 100644 --- a/src/comm.cc +++ b/src/comm.cc @@ -1,6 +1,6 @@ /* - * $Id: comm.cc,v 1.160 1997/06/04 07:00:31 wessels Exp $ + * $Id: comm.cc,v 1.161 1997/06/04 07:02:55 wessels Exp $ * * DEBUG: section 5 Socket Functions * AUTHOR: Harvest Derived @@ -1045,8 +1045,8 @@ comm_select(time_t sec) for (fd = 0; fd < maxfd; fd++) { if (!FD_ISSET(fd, &readfds) && !FD_ISSET(fd, &writefds)) continue; - if ((incoming_counter++ & (lastinc > 0 ? 1 : 7) == 0) - comm_poll_incoming(); + if ((incoming_counter++ & (lastinc > 0 ? 1 : 7)) == 0) + comm_select_incoming(); if (fdIsHttpOrIcp(fd)) continue; if (FD_ISSET(fd, &readfds)) {