aboutsummaryrefslogtreecommitdiff
path: root/www/mod_roaming/files
diff options
context:
space:
mode:
authorAkinori MUSHA <knu@FreeBSD.org>2000-08-11 15:51:04 +0000
committerAkinori MUSHA <knu@FreeBSD.org>2000-08-11 15:51:04 +0000
commit99dc91818964372315487c2cb9c1f7739ed538a1 (patch)
tree99c8216e8f2b710170e558739c495bf2484d2d26 /www/mod_roaming/files
parentb417a4fddb0a4b35da5c2106ff58d0d8f962a3e9 (diff)
downloadports-99dc91818964372315487c2cb9c1f7739ed538a1.tar.gz
ports-99dc91818964372315487c2cb9c1f7739ed538a1.zip
Notes
Diffstat (limited to 'www/mod_roaming/files')
-rw-r--r--www/mod_roaming/files/patch-aa26
1 files changed, 26 insertions, 0 deletions
diff --git a/www/mod_roaming/files/patch-aa b/www/mod_roaming/files/patch-aa
new file mode 100644
index 000000000000..9f842075a9d6
--- /dev/null
+++ b/www/mod_roaming/files/patch-aa
@@ -0,0 +1,26 @@
+--- mod_roaming.c.orig Sun Jul 23 02:02:33 2000
++++ mod_roaming.c Fri Aug 11 21:55:18 2000
+@@ -275,11 +275,12 @@
+ FILE *f;
+ struct stat file_info;
+ int i, ret;
+- roaming_config_t *rc;
+ array_header *hdr_arr;
+ table_entry *headers;
+ size_t chars_read;
+
++ new_uri = NULL;
++
+ /* Checks whether the correct user has logged on */
+ /* to access these roaming files. */
+ user = ap_table_get(r->notes, "roaming-user");
+@@ -292,8 +293,7 @@
+ "Unauthenticated user has no access to roaming files for %s",
+ user);
+ ap_log_rerror(APLOG_MARK, APLOG_WARNING|APLOG_NOERRNO, r,
+- "Have you put a .htaccess file in the roaming directory?",
+- user);
++ "Have you put a .htaccess file in the roaming directory?");
+ return HTTP_FORBIDDEN;
+ } else if(strcmp(r->connection->user, user) != 0) {
+ ap_log_rerror(APLOG_MARK, APLOG_ERR|APLOG_NOERRNO, r,