From: Source Maintenance Date: Sun, 9 Oct 2016 00:14:14 +0000 (+0000) Subject: SourceFormat Enforcement X-Git-Tag: SQUID_3_5_22~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=239c6926d8e3825067993c598411b816ed29091e;p=thirdparty%2Fsquid.git SourceFormat Enforcement --- diff --git a/src/ip/Intercept.cc b/src/ip/Intercept.cc index c188752b45..e197d6a4bd 100644 --- a/src/ip/Intercept.cc +++ b/src/ip/Intercept.cc @@ -214,7 +214,8 @@ Ip::Intercept::IpfInterception(const Comm::ConnectionPointer &newConn, int silen natLookup.nl_v = 6; newConn->local.getInAddr(natLookup.nl_inipaddr.in6); newConn->remote.getInAddr(natLookup.nl_outipaddr.in6); - } else { + } + else { natLookup.nl_v = 4; newConn->local.getInAddr(natLookup.nl_inipaddr.in4); newConn->remote.getInAddr(natLookup.nl_outipaddr.in4);