]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Replace the wrong get_word function with the right one.
authorBradley Nicholes <bnicholes@apache.org>
Fri, 9 Dec 2005 23:03:03 +0000 (23:03 +0000)
committerBradley Nicholes <bnicholes@apache.org>
Fri, 9 Dec 2005 23:03:03 +0000 (23:03 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/authz-dev@355627 13f79535-47bb-0310-9956-ffa450edef68

modules/aaa/mod_authz_dbm.c

index fd489850a1643fd85157fe573eb8571af3f57ed1..826512359d3e49f8cc820257d596dd5d97a036d4 100644 (file)
@@ -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, ',');