From 4ca636cd5a62f87f52cdd4ca6b68024ead2dd1d8 Mon Sep 17 00:00:00 2001 From: Amos Jeffries Date: Sun, 29 Mar 2009 20:13:39 +1300 Subject: [PATCH] Fix build error in IpfInterception() --- configure.in | 1 - src/ip/IpIntercept.cc | 2 +- src/ip/IpIntercept.h | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) 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. -- 2.47.3