summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBradley Nicholes <bnicholes@apache.org>2005-12-09 23:03:03 +0000
committerBradley Nicholes <bnicholes@apache.org>2005-12-09 23:03:03 +0000
commit30bd4ac7b89d220c5f6a2488fe00744bb0d6a73b (patch)
tree3cac17d920654193d517de6a46e3ab0da15c47fa
parent8a3a956d8de881ac98367ac082885c7979c9bd9d (diff)
downloadhttpd-30bd4ac7b89d220c5f6a2488fe00744bb0d6a73b.tar.gz
Replace the wrong get_word function with the right one.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/authz-dev@355627 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--modules/aaa/mod_authz_dbm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/aaa/mod_authz_dbm.c b/modules/aaa/mod_authz_dbm.c
index fd489850a1..826512359d 100644
--- a/modules/aaa/mod_authz_dbm.c
+++ b/modules/aaa/mod_authz_dbm.c
@@ -316,7 +316,7 @@ static authz_status dbmgroup_check_authorization(request_rec *r,
}
t = require_args;
- while ((w = ap_getword_conf(r->pool, &t)) && w[0]) {
+ while ((w = ap_getword_white(r->pool, &t)) && w[0]) {
groups = orig_groups;
while (groups[0]) {
v = ap_getword(r->pool, &groups, ',');