From: Bradley Nicholes Date: Fri, 9 Dec 2005 23:03:03 +0000 (+0000) Subject: Replace the wrong get_word function with the right one. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=30bd4ac7b89d220c5f6a2488fe00744bb0d6a73b;p=thirdparty%2Fapache%2Fhttpd.git 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 --- diff --git a/modules/aaa/mod_authz_dbm.c b/modules/aaa/mod_authz_dbm.c index fd489850a16..826512359d3 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, ',');