8335b1
# ./pullrev.sh r1556818
8335b1
http://svn.apache.org/viewvc?view=revision&revision=r1556818
8335b1
--- httpd-2.4.6/modules/aaa/mod_authn_core.c	2014/01/09 14:30:23	1556817
8335b1
+++ httpd-2.4.6/modules/aaa/mod_authn_core.c	2014/01/09 14:32:47	1556818
8335b1
@@ -179,6 +179,12 @@
8335b1
     return (void *) authcfg;
8335b1
 }
8335b1
 
8335b1
+/* Only per-server directive we have is GLOBAL_ONLY */
8335b1
+static void *merge_authn_alias_svr_config(apr_pool_t *p, void *basev, void *overridesv)
8335b1
+{
8335b1
+    return basev;
8335b1
+}
8335b1
+
8335b1
 static const authn_provider authn_alias_provider =
8335b1
 {
8335b1
     &authn_alias_check_password,
8335b1
@@ -373,7 +379,7 @@
8335b1
     create_authn_core_dir_config,   /* dir config creater */
8335b1
     merge_authn_core_dir_config,    /* dir merger --- default is to override */
8335b1
     create_authn_alias_svr_config,  /* server config */
8335b1
-    NULL,                           /* merge server config */
8335b1
+    merge_authn_alias_svr_config,   /* merge server config */
8335b1
     authn_cmds,
8335b1
     register_hooks                  /* register hooks */
8335b1
 };