From: Amos Jeffries Date: Sun, 18 Sep 2011 00:37:53 +0000 (+1200) Subject: Fix typo in IPF interception X-Git-Tag: BumpSslServerFirst.take01~146 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9a8b181636de36a4504e80d00af8b1b49133d01d;p=thirdparty%2Fsquid.git Fix typo in IPF interception --- diff --git a/src/ip/Intercept.cc b/src/ip/Intercept.cc index 3a9837d861..07fecda031 100644 --- a/src/ip/Intercept.cc +++ b/src/ip/Intercept.cc @@ -204,7 +204,7 @@ Ip::Intercept::IpfInterception(const Comm::ConnectionPointer &newConn, int silen natLookup.nl_inport = htons(newConn->local.GetPort()); newConn->local.GetInAddr(natLookup.nl_inip); - natLookup.nl_outport = htons(neConn->remote.GetPort()); + natLookup.nl_outport = htons(newConn->remote.GetPort()); newConn->remote.GetInAddr(natLookup.nl_outip); natLookup.nl_flags = IPN_TCP;