diff options
author | Bill Fumerola <billf@FreeBSD.org> | 2000-03-01 06:25:15 +0000 |
---|---|---|
committer | Bill Fumerola <billf@FreeBSD.org> | 2000-03-01 06:25:15 +0000 |
commit | e6503fb81a27bb578af6a8d0591748b0d84cbf3d (patch) | |
tree | 80c45281ac7798887074895f840282856e9b3bab /www/apache13-fp/files/patch-fi | |
parent | Upgrade to version 2.3. (diff) |
Upgrade to the latest and greatest apache/frontpage combo.
PR: ports/16974
Submitted by: maintainer
Notes
Notes:
svn path=/head/; revision=26464
Diffstat (limited to '')
-rw-r--r-- | www/apache13-fp/files/patch-fi | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/www/apache13-fp/files/patch-fi b/www/apache13-fp/files/patch-fi index d4f19a6140a8..f07c130ca42c 100644 --- a/www/apache13-fp/files/patch-fi +++ b/www/apache13-fp/files/patch-fi @@ -1,15 +1,25 @@ ---- src/main/http_request.c.orig Fri May 21 07:16:21 1999 -+++ src/main/http_request.c Sat Oct 16 18:47:04 1999 -@@ -187,6 +187,8 @@ +--- src/main/http_request.c.orig Tue Jan 11 08:13:41 2000 ++++ src/main/http_request.c Sun Feb 20 18:44:49 2000 +@@ -175,7 +175,7 @@ + { + char *cp; + char *path = r->filename; +- char *end = &path[strlen(path)]; ++ char *end; + char *last_cp = NULL; + int rv; + #ifdef HAVE_DRIVE_LETTERS +@@ -187,6 +187,9 @@ return OK; } + if (r->execfilename) path = r->execfilename; ++ end = path + strlen(path); + #ifdef HAVE_DRIVE_LETTERS /* If the directory is x:\, then we don't want to strip * the trailing slash since x: is not a valid directory. -@@ -511,6 +513,7 @@ +@@ -511,6 +514,7 @@ res = ap_parse_htaccess(&htaccess_conf, r, overrides_here, ap_pstrdup(r->pool, test_dirname), sconf->access_name); @@ -17,7 +27,7 @@ if (res) return res; -@@ -521,6 +524,7 @@ +@@ -521,6 +525,7 @@ r->per_dir_config = per_dir_defaults; } } |