]> git.pld-linux.org Git - packages/apache1.git/commitdiff
- obsolete
authorJakub Bogusz <qboosh@pld-linux.org>
Wed, 12 May 2004 15:00:41 +0000 (15:00 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    apache1-CAN-2003-0020.patch -> 1.2
    apache1-htdocs.patch -> 1.2

apache1-CAN-2003-0020.patch [deleted file]
apache1-htdocs.patch [deleted file]

diff --git a/apache1-CAN-2003-0020.patch b/apache1-CAN-2003-0020.patch
deleted file mode 100644 (file)
index 1081f16..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-From RedHat's errata for 1.3.27
---- src/main/http_log.c.escape 2003-02-14 10:57:45.000000000 +0000
-+++ src/main/http_log.c        2003-02-14 11:17:30.000000000 +0000
-@@ -251,6 +251,17 @@
-     }
- }
-+/* Clean 'str' of non-printable characters. */
-+static void sanitize(char *str, size_t len)
-+{
-+    while (len--) {
-+        /* iscntrl implies !isprint; redundant but paranoid. */
-+        if (!isprint(*str) || iscntrl(*str))
-+            *str = '!';
-+        str++;
-+    }
-+}    
-+
- API_EXPORT(void) ap_open_logs(server_rec *s_main, pool *p)
- {
-     server_rec *virt, *q;
-@@ -459,6 +470,9 @@
-     len += ap_vsnprintf(errstr + len, sizeof(errstr) - len, fmt, args);
-+    /* clean of non-printable characters. */
-+    sanitize(errstr, len);
-+
-     /* NULL if we are logging to syslog */
-     if (logf) {
-       fputs(errstr, logf);
diff --git a/apache1-htdocs.patch b/apache1-htdocs.patch
deleted file mode 100644 (file)
index 49c4285..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-diff -Nur apache_1.3.6/htdocs/manual/search/manual-index.cgi apache_1.3.6.pld/htdocs/manual/search/manual-index.cgi
---- apache_1.3.6/htdocs/manual/search/manual-index.cgi Fri Feb 26 01:39:58 1999
-+++ apache_1.3.6.pld/htdocs/manual/search/manual-index.cgi     Wed May 26 18:00:39 1999
-@@ -1,4 +1,4 @@
--#!/usr/local/bin/perl5 -w
-+#!/usr/bin/perl -w
- # ====================================================================
- # Copyright (c) 1995-1997 The Apache Group.  All rights reserved.
- #
This page took 0.026862 seconds and 4 git commands to generate.