summaryrefslogtreecommitdiff
path: root/www/apache13-modperl/files
diff options
context:
space:
mode:
authorClement Laforet <clement@FreeBSD.org>2006-07-18 08:19:53 +0000
committerClement Laforet <clement@FreeBSD.org>2006-07-18 08:19:53 +0000
commit6e84112a9f675fad9cc88fa419b71ebc638fbc29 (patch)
tree37f41c7983efbd1b089121bdc0e64a0c18fbfd74 /www/apache13-modperl/files
parent- Update to 1.0.2 (diff)
- update apache to 1.3.36
- bump HARD_SERVER_LIMIT to 2048 - drop broken WITH*_EXPAT support. we always depend on expat from ports (based on [1]) PR: ports/81183 [1] Submitted by: Martin Nilsson <martin@svenskabutiker.se>
Notes
Notes: svn path=/head/; revision=168125
Diffstat (limited to 'www/apache13-modperl/files')
-rw-r--r--www/apache13-modperl/files/patch-secfix-CAN-2005-335235
1 files changed, 0 insertions, 35 deletions
diff --git a/www/apache13-modperl/files/patch-secfix-CAN-2005-3352 b/www/apache13-modperl/files/patch-secfix-CAN-2005-3352
deleted file mode 100644
index 8febc0e58935..000000000000
--- a/www/apache13-modperl/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
-