Description: TODO: Put a short summary on the line above and replace this paragraph with a longer explanation of this change. Complete the meta-information with other relevant fields (see below for details). To make it easier, the information below has been extracted from the changelog. Adjust it or drop it. . squid3 (3.3.8-1ubuntu6.8) UNRELEASED; urgency=medium . * Fix Bug #3769 * Author: Lukas Erlacher --- The information above should follow the Patch Tagging Guidelines, please checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here are templates for supplementary fields that you might want to add: Origin: , Bug: Bug-Debian: http://bugs.debian.org/ Bug-Ubuntu: https://launchpad.net/bugs/ Forwarded: Reviewed-By: Last-Update: --- squid3-3.3.8.orig/src/AccessLogEntry.cc +++ squid3-3.3.8/src/AccessLogEntry.cc @@ -35,8 +35,8 @@ AccessLogEntry::getLogClientIp(char *buf // - IPv4 clients masked with client_netmask // - IPv6 clients use 'privacy addressing' instead. - if (!log_ip.isLocalhost() && log_ip.isIPv4()) - log_ip.applyMask(Config.Addrs.client_netmask); + if (!log_ip.IsLocalhost() && log_ip.IsIPv4()) + log_ip.ApplyMask(Config.Addrs.client_netmask); log_ip.NtoA(buf, bufsz); }