From 0b9425a7e138666e99eb1d11c87f35617be199d3 Mon Sep 17 00:00:00 2001 From: "jan@unixpapa.com" Date: Wed, 11 Dec 2013 19:22:40 +0000 Subject: [PATCH] Fix a bug with setting GROUP environment variable. --- mod_authnz_external/CHANGES | 8 +++++--- mod_authnz_external/mod_authnz_external.c | 2 +- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/mod_authnz_external/CHANGES b/mod_authnz_external/CHANGES index 024b42e..01f5f72 100644 --- a/mod_authnz_external/CHANGES +++ b/mod_authnz_external/CHANGES @@ -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) ---------------------------------------------- diff --git a/mod_authnz_external/mod_authnz_external.c b/mod_authnz_external/mod_authnz_external.c index f394832..14eec7d 100644 --- a/mod_authnz_external/mod_authnz_external.c +++ b/mod_authnz_external/mod_authnz_external.c @@ -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; } -- 2.40.0