From: Amos Jeffries Date: Sat, 1 May 2010 02:39:57 +0000 (+1200) Subject: Fix build issue in WCCPv1 handshake port. X-Git-Tag: SQUID_3_1_2~3 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4f5cd12ba8c75ed6f5a6107db3121108f88d7a5a;p=thirdparty%2Fsquid.git Fix build issue in WCCPv1 handshake port. --- diff --git a/src/wccp.cc b/src/wccp.cc index 5221bef62d..e50244556d 100644 --- a/src/wccp.cc +++ b/src/wccp.cc @@ -291,7 +291,7 @@ wccpLowestIP(void) if (local_ip > wccp_i_see_you.wccp_cache_entry[loop].ip_addr) return 0; - if (wccp_i_see_you.wccp_cache_entry[loop].ip_addr == local_ip) + if (local_ip == wccp_i_see_you.wccp_cache_entry[loop].ip_addr) found = 1; }