]> granicus.if.org Git - apache-authnz-external/commitdiff
Fix a bug with setting GROUP environment variable.
authorjan@unixpapa.com <jan@unixpapa.com@8c465660-3f02-11de-a81c-fde7d73ceb89>
Wed, 11 Dec 2013 19:22:40 +0000 (19:22 +0000)
committerjan@unixpapa.com <jan@unixpapa.com@8c465660-3f02-11de-a81c-fde7d73ceb89>
Wed, 11 Dec 2013 19:22:40 +0000 (19:22 +0000)
mod_authnz_external/CHANGES
mod_authnz_external/mod_authnz_external.c

index 024b42e7e37eb015aa70e423d0b8e7312f5d1f0c..01f5f72c70b5c4d251f801db33e941dd5fa11593 100644 (file)
@@ -1,9 +1,11 @@
-v3.3.2   (Jan Wolter - NOT YET RELEASED)
+v3.3.2   (Jan Wolter - Dec 11, 2013)
 ----------------------------------------------
- * Added the FORWARDS environment variable for use with load balancing servers.
-   This patch contributed by Rogier Slag.
+ * Fixed a bug with setting of GROUP environment variable. Thanks to
+   ddarbyson for reporting this, and Guoan Hu for posting the fix.
  * Added test/test.pipe.php, a PHP version of test/test.pipe contributed
    by Claus Andersen.
+ * Added the FORWARDS environment variable for use with load balancing servers.
+   This patch contributed by Rogier Slag.
 
 v3.3.1   (Jan Wolter - Oct 12, 2011)
 ----------------------------------------------
index f3948323c86675468a2c1dd9666537304297cc03..14eec7d071e222dac44160b3d80cd825879b518d 100644 (file)
@@ -202,7 +202,7 @@ static const char *def_extgroup(cmd_parms *cmd, void *dummy,
            &authnz_external_module);
 
     apr_table_set( svr->group_path,   keyword, path );
-    apr_table_set( svr->group_method, keyword, DEFAULT_METHOD );
+    apr_table_set( svr->group_method, keyword, method );
 
     return NULL;
 }