You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
581 B
17 lines
581 B
6 years ago
|
diff --git a/modules/aaa/mod_access_compat.c b/modules/aaa/mod_access_compat.c
|
||
|
index 46d8da0..0a5d5a1 100644
|
||
|
--- a/modules/aaa/mod_access_compat.c
|
||
|
+++ b/modules/aaa/mod_access_compat.c
|
||
|
@@ -152,6 +152,11 @@ static const char *allow_cmd(cmd_parms *cmd, void *dv, const char *from,
|
||
|
if (strcasecmp(from, "from"))
|
||
|
return "allow and deny must be followed by 'from'";
|
||
|
|
||
|
+ s = ap_strchr(where, '#');
|
||
|
+ if (s) {
|
||
|
+ *s = '\0';
|
||
|
+ }
|
||
|
+
|
||
|
a = (allowdeny *) apr_array_push(cmd->info ? d->allows : d->denys);
|
||
|
a->x.from = where;
|
||
|
a->limited = cmd->limited;
|