From: wessels <> Date: Thu, 28 May 1998 10:42:28 +0000 (+0000) Subject: logic fix X-Git-Tag: SQUID_3_0_PRE1~3233 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=82c0f185bb23944a7e9f7d6934bb880d9a7b8749;p=thirdparty%2Fsquid.git logic fix --- diff --git a/src/comm.cc b/src/comm.cc index c50464510d..91815a5fc1 100644 --- a/src/comm.cc +++ b/src/comm.cc @@ -1,7 +1,7 @@ /* - * $Id: comm.cc,v 1.260 1998/05/28 02:50:48 wessels Exp $ + * $Id: comm.cc,v 1.261 1998/05/28 04:42:28 wessels Exp $ * * DEBUG: section 5 Socket Functions * AUTHOR: Harvest Derived @@ -900,8 +900,9 @@ comm_incoming(void) incame = 0; if (theInIcpConnection > 0) icpHandleUdp(theInIcpConnection, &incame); - if (theInIcpConnection != theOutIcpConnection) - icpHandleUdp(theOutIcpConnection, &incame); + if (theInIcpConnection != theOutIcpConnection) + icpHandleUdp(theOutIcpConnection, &incame); + } for (j = 0; j < NHttpSockets; j++) { if (HttpSockets[j] < 0) continue;