From: Amos Jeffries Date: Sun, 29 Mar 2009 07:13:39 +0000 (+1300) Subject: Fix build error in IpfInterception() X-Git-Tag: SQUID_3_2_0_1~1090 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4ca636cd5a62f87f52cdd4ca6b68024ead2dd1d8;p=thirdparty%2Fsquid.git Fix build error in IpfInterception() --- diff --git a/configure.in b/configure.in index 61eb6367ac..fdee3f5457 100644 --- a/configure.in +++ b/configure.in @@ -1,4 +1,3 @@ - dnl Configuration input file for Squid dnl dnl $Id$ diff --git a/src/ip/IpIntercept.cc b/src/ip/IpIntercept.cc index 8f6365e435..2d8134cfa4 100644 --- a/src/ip/IpIntercept.cc +++ b/src/ip/IpIntercept.cc @@ -198,7 +198,7 @@ IpIntercept::IpfwInterception(int fd, const IpAddress &me, IpAddress &dst, int s } int -IpIntercept::IpfInterception(int fd, const IpAddress &me, IpAddress &dst, int silent) +IpIntercept::IpfInterception(int fd, IpAddress &me, IpAddress &dst, int silent) { #if IPF_TRANSPARENT /* --enable-ipf-transparent */ diff --git a/src/ip/IpIntercept.h b/src/ip/IpIntercept.h index 23782f8439..09caecf3a9 100644 --- a/src/ip/IpIntercept.h +++ b/src/ip/IpIntercept.h @@ -114,7 +114,7 @@ private: \retval 0 Successfuly located the new address. \retval -1 An error occured during NAT lookups. */ - int IpfInterception(int fd, const IpAddress &me, IpAddress &client, int silent); + int IpfInterception(int fd, IpAddress &me, IpAddress &client, int silent); /** * perform Lookups on PF interception.