diff options
author | Steve Price <steve@FreeBSD.org> | 1999-09-27 02:52:26 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 1999-09-27 02:52:26 +0000 |
commit | 936af4387d81e213b5945e8ef5d81205c2b25837 (patch) | |
tree | 45e592bed14bc3ee6a21cb1820cf04d2a89dc0cb /www/apache13-fp/files/patch-fj | |
parent | Update to version 1.30.4. (diff) |
Update to use Apache version 1.3.9. Misc. notes from maintainer:
patch-au corrects a problem when either ResourceConfig/AccessConfig is
set to the apache configuration file (${PREFIX}/etc/apache/httpd.conf).
Without this patch, if you set the apache server to listen to alterate
ports the server would fail to start and the error log would contain:
[crit] (48)Address already in use: make_sock: could not bind to port 8000
ResourceConfig/AccessConfig can't be set to /dev/null. The fpsrvadm.exe
will not be able to obtain the DocumnetRoot from the ResourceConfig file
(/dev/null).
PR: 13673
Submitted by: maintainer
Notes
Notes:
svn path=/head/; revision=21991
Diffstat (limited to 'www/apache13-fp/files/patch-fj')
-rw-r--r-- | www/apache13-fp/files/patch-fj | 30 |
1 files changed, 11 insertions, 19 deletions
diff --git a/www/apache13-fp/files/patch-fj b/www/apache13-fp/files/patch-fj index e0b1414f0011..ebc0268dcda2 100644 --- a/www/apache13-fp/files/patch-fj +++ b/www/apache13-fp/files/patch-fj @@ -1,19 +1,11 @@ -*** src/main/util.c.orig Sat May 9 09:27:27 1998 ---- src/main/util.c Fri May 22 16:57:19 1998 -*************** -*** 582,588 **** - char *res; - - for (x = 0; (*line)[x]; x++) { -! if (ap_isspace((*line)[x])) { - pos = x; - break; - } ---- 582,588 ---- - char *res; - - for (x = 0; (*line)[x]; x++) { -! if (ap_isspace((*line)[x]) && ((*line)[x] & 0x80)==0) { - pos = x; - break; - } +--- src/main/util.c.orig Sat Aug 14 03:35:50 1999 ++++ src/main/util.c Mon Sep 6 13:12:55 1999 +@@ -635,7 +635,7 @@ + char *res; + + for (x = 0; (*line)[x]; x++) { +- if (ap_isspace((*line)[x])) { ++ if (ap_isspace((*line)[x]) && ((*line)[x] & 0x80)==0) { + pos = x; + break; + } |