]> granicus.if.org Git - apache-authnz-external/commitdiff
Allow group names to be quoted on "Require group" line.
authorjan@unixpapa.com <jan@unixpapa.com@8c465660-3f02-11de-a81c-fde7d73ceb89>
Fri, 26 Mar 2010 01:45:52 +0000 (01:45 +0000)
committerjan@unixpapa.com <jan@unixpapa.com@8c465660-3f02-11de-a81c-fde7d73ceb89>
Fri, 26 Mar 2010 01:45:52 +0000 (01:45 +0000)
mod_authz_unixgroup/CHANGES
mod_authz_unixgroup/mod_authz_unixgroup.c

index 0ba8c31c82ef8439fb7392c44da456f838fa357b..2b3682cac47c7a45a094a3c975b51e27da8c3178 100644 (file)
@@ -1,3 +1,9 @@
+v1.0.3   (Jan Wolter - )
+------------------------------------
+ * Allow group names to be quoted, so that you can have group names with
+   spaces in them.  This change was suggested by David Homborg.  Not yet
+   tested.
+
 v1.0.2   (Jan Wolter - May 21, 2009)
 ------------------------------------
  * Adding copyright and Apache Version 2.0 license in LICENSE and NOTICE
index 392a0c21e88d235fa47647127135b9f516e9135e..e373c53d4e669f2b8db70f81456fe0285775ab0f 100644 (file)
@@ -125,7 +125,7 @@ static int check_unix_group(request_rec *r, const char *grouplist)
     /* Loop through list of groups passed in */
     while (*grouplist != '\0')
     {
-       w= ap_getword_white(r->pool, &grouplist);
+       w= ap_getword_conf(r->pool, &grouplist);
        if (apr_isdigit(w[0]))
        {
            /* Numeric group id */