Commit 192784ff authored by Bradley Nicholes's avatar Bradley Nicholes
Browse files

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
parent 633d1244
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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, ',');