diff options
author | taca <taca@pkgsrc.org> | 2001-12-12 17:06:18 +0000 |
---|---|---|
committer | taca <taca@pkgsrc.org> | 2001-12-12 17:06:18 +0000 |
commit | 7d04de62b8ed0459d47a7ae9fb882914505108f1 (patch) | |
tree | 91a0eac8adddc552dd98beb4bad527eb109d6145 /www/squid/patches/patch-aj | |
parent | 4a25c01ee05bf7740e5cc13efa5f88014eadd535 (diff) | |
download | pkgsrc-7d04de62b8ed0459d47a7ae9fb882914505108f1.tar.gz |
Update squid to 2.4.3 (squid-2.4.STABLE3), referring to tech-pkg's mail
from "Ciarcinski, Adam \(ISS Brussels\)" <ACiarcinski@iss.net>.
From ChangeLog:
Changes to Squid-2.4.STABLE3 (Nov 28, 2001):
- Fixed bug #255: core dump on SSL/CONNECT if access denied by
miss_access
- Fixed bug #246: corrupt on-disk meta information preventing
rebuilds of lost swap.state files
- Fixed bug #243: squid_ldap_auth now supports spaces in passwords
- Fixed a coredump when creating FTP directories
- Fixed a compile time problem with statHistDump prototype mistmatch,
reported by some compilers
- Fixed a potential coredump situation on snmpwalk in certain
configurations
- Fixed bug #229: filedescriptor leakage in the "aufs" cache_dir
store implementation
- Serbian error message translations
I added following changes, too.
o honor PKG_SYSCONFDIR keep SQUID_SYSCONFDIR effective.
o Add --disable-internal-dns. This made external dnsserver
available. External dnsserver could be disabled with configuration
file.
o Enable optimization with "-O".
o Fix a problem to access nat device when transparent proxy enabled.
This fix will be contained in squid 2.5 release.
o setproctitle() hack for external dnsserver from daemonnews's article.
Diffstat (limited to 'www/squid/patches/patch-aj')
-rw-r--r-- | www/squid/patches/patch-aj | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/www/squid/patches/patch-aj b/www/squid/patches/patch-aj index 21af23024dd..37b19b1c37b 100644 --- a/www/squid/patches/patch-aj +++ b/www/squid/patches/patch-aj @@ -1,8 +1,8 @@ -$NetBSD: patch-aj,v 1.4 2000/11/02 10:41:45 jdolecek Exp $ +$NetBSD: patch-aj,v 1.5 2001/12/12 17:06:20 taca Exp $ ---- src/access_log.c.orig Thu Nov 2 10:00:04 2000 -+++ src/access_log.c Thu Nov 2 11:06:28 2000 -@@ -122,6 +122,8 @@ log_quote(const char *header) +--- src/access_log.c.orig Fri Jan 12 09:51:44 2001 ++++ src/access_log.c +@@ -120,6 +120,8 @@ { int c; int i; @@ -11,7 +11,7 @@ $NetBSD: patch-aj,v 1.4 2000/11/02 10:41:45 jdolecek Exp $ char *buf; char *buf_cursor; if (header == NULL) { -@@ -131,13 +133,41 @@ log_quote(const char *header) +@@ -129,13 +131,41 @@ } buf = xcalloc((strlen(header) * 3) + 1, 1); buf_cursor = buf; @@ -54,7 +54,7 @@ $NetBSD: patch-aj,v 1.4 2000/11/02 10:41:45 jdolecek Exp $ #if !OLD_LOG_MIME if (c == '\r') { *buf_cursor++ = '\\'; -@@ -145,6 +175,7 @@ log_quote(const char *header) +@@ -143,6 +173,7 @@ } else if (c == '\n') { *buf_cursor++ = '\\'; *buf_cursor++ = 'n'; |