diff options
author | Ryan Bloom <rbb@apache.org> | 2002-09-28 08:10:47 +0200 |
---|---|---|
committer | Ryan Bloom <rbb@apache.org> | 2002-09-28 08:10:47 +0200 |
commit | 19b98bc41afbf97cae0d20924c061e0e1fc96918 (patch) | |
tree | 42d92e241ac757a196ab10950890afc24dcd2390 /modules/mappers/mod_userdir.c | |
parent | New Module -- mod_logio. (diff) | |
download | apache2-19b98bc41afbf97cae0d20924c061e0e1fc96918.tar.xz apache2-19b98bc41afbf97cae0d20924c061e0e1fc96918.zip |
Allow the UserDir directive to accept a list of directories.
This matches what Apache 1.3 does. Also add documentation for
this feature.
PR: 9299
Submitted by: Jay Ball <jay@veggiespam.com>
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@97001 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/mappers/mod_userdir.c')
-rw-r--r-- | modules/mappers/mod_userdir.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/modules/mappers/mod_userdir.c b/modules/mappers/mod_userdir.c index e76b2fe1dd..2d0a271ae2 100644 --- a/modules/mappers/mod_userdir.c +++ b/modules/mappers/mod_userdir.c @@ -328,9 +328,6 @@ static int translate_userdir(request_rec *r) if (apr_get_home_directory(&homedir, w, r->pool) == APR_SUCCESS) { filename = apr_pstrcat(r->pool, homedir, "/", userdir, NULL); } - else { - return DECLINED; - } #else return DECLINED; #endif |