From 5cafae4f1a9b6f63a1b51d468035eff912ff4a16 Mon Sep 17 00:00:00 2001 From: Gustavo Zacarias Date: Mon, 8 Nov 2010 13:40:35 -0300 Subject: squid: bump to version 3.1.9 Closes #2773 Fixes several security issues and host-openssl dependency for cf_gen. Signed-off-by: Gustavo Zacarias Signed-off-by: Peter Korsgaard --- package/squid/squid-susv3-legacy.patch | 49 ---------------------------------- 1 file changed, 49 deletions(-) delete mode 100644 package/squid/squid-susv3-legacy.patch (limited to 'package/squid/squid-susv3-legacy.patch') diff --git a/package/squid/squid-susv3-legacy.patch b/package/squid/squid-susv3-legacy.patch deleted file mode 100644 index c3343bd2a..000000000 --- a/package/squid/squid-susv3-legacy.patch +++ /dev/null @@ -1,49 +0,0 @@ -[PATCH] replace susv3 legacy functions with modern equivalents - -Signed-off-by: Peter Korsgaard ---- - src/ESIVarState.cc | 6 +++--- - src/HttpHeaderTools.cc | 2 +- - 2 files changed, 4 insertions(+), 4 deletions(-) - -Index: squid-3.0.STABLE21/src/ESIVarState.cc -=================================================================== ---- squid-3.0.STABLE21.orig/src/ESIVarState.cc -+++ squid-3.0.STABLE21/src/ESIVarState.cc -@@ -207,7 +207,7 @@ ESIVariableUserAgent::getProductVersion - { - char const *t; - int len; -- t = index (s,'/'); -+ t = strchr (s,'/'); - - if (!t || !*(++t)) - return xstrdup (""); -@@ -382,12 +382,12 @@ ESIVariableUserAgent::ESIVariableUserAge - - if ((t = strstr (s, "MSIE"))) { - browser = ESI_BROWSER_MSIE; -- t = index (t, ' '); -+ t = strchr (t, ' '); - - if (!t) - browserversion = xstrdup (""); - else { -- t1 = index (t, ';'); -+ t1 = strchr (t, ';'); - - if (!t1) - browserversion = xstrdup (t + 1); -Index: squid-3.0.STABLE21/src/HttpHeaderTools.cc -=================================================================== ---- squid-3.0.STABLE21.orig/src/HttpHeaderTools.cc -+++ squid-3.0.STABLE21/src/HttpHeaderTools.cc -@@ -357,7 +357,7 @@ httpHeaderParseQuotedString (const char - pos = start + 1; - - while (1) { -- if (!(end = index (pos,'"'))) { -+ if (!(end = strchr (pos,'"'))) { - debugs(66, 2, "failed to parse a quoted-string header field near '" << start << "'"); - return 0; - } -- cgit v1.2.3