summaryrefslogtreecommitdiff
path: root/www/apache13/files
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>2006-05-10 13:57:18 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>2006-05-10 13:57:18 +0000
commit978d1b72307d11a2d350cb39e033d8cf7adb4294 (patch)
tree136e2fed2facc8a7773f77085557af962b52c061 /www/apache13/files
parentThere are other ports that install stuff into (diff)
Upgrade to 1.3.35
Notes
Notes: svn path=/head/; revision=161926
Diffstat (limited to 'www/apache13/files')
-rw-r--r--www/apache13/files/patch-secfix-CAN-2005-335235
1 files changed, 0 insertions, 35 deletions
diff --git a/www/apache13/files/patch-secfix-CAN-2005-3352 b/www/apache13/files/patch-secfix-CAN-2005-3352
deleted file mode 100644
index 8febc0e58935..000000000000
--- a/www/apache13/files/patch-secfix-CAN-2005-3352
+++ /dev/null
@@ -1,35 +0,0 @@
---- src/main/util.c (original)
-+++ src/main/util.c Mon Dec 12 08:36:54 2005
-@@ -1722,6 +1722,8 @@
- j += 3;
- else if (s[i] == '&')
- j += 4;
-+ else if (s[i] == '"')
-+ j += 5;
-
- if (j == 0)
- return ap_pstrndup(p, s, i);
-@@ -1739,6 +1741,10 @@
- else if (s[i] == '&') {
- memcpy(&x[j], "&amp;", 5);
- j += 4;
-+ }
-+ else if (s[i] == '"') {
-+ memcpy(&x[j], "&quot;", 6);
-+ j += 5;
- }
- else
- x[j] = s[i];
-
---- src/modules/standard/mod_imap.c (original)
-+++ src/modules/standard/mod_imap.c Mon Dec 12 08:36:54 2005
-@@ -328,7 +328,7 @@
- if (!strcasecmp(value, "referer")) {
- referer = ap_table_get(r->headers_in, "Referer");
- if (referer && *referer) {
-- return ap_pstrdup(r->pool, referer);
-+ return ap_escape_html(r->pool, referer);
- }
- else {
- /* XXX: This used to do *value = '\0'; ... which is totally bogus
-