]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
compiler
authorwessels <>
Wed, 4 Jun 1997 13:02:55 +0000 (13:02 +0000)
committerwessels <>
Wed, 4 Jun 1997 13:02:55 +0000 (13:02 +0000)
src/comm.cc

index 7a211a2d32d9f000293caceadc2b33d1237ceb1c..5b5ba8d353ae38e4b8dc8e47eff7ad17c3fb790d 100644 (file)
@@ -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)) {