You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by mi...@apache.org on 2013/12/30 11:52:58 UTC

svn commit: r1554181 - /httpd/httpd/trunk/modules/aaa/mod_authz_dbm.c

Author: minfrin
Date: Mon Dec 30 10:52:58 2013
New Revision: 1554181

URL: http://svn.apache.org/r1554181
Log:
Pass the correct pointer that made it past the test suite.

Modified:
    httpd/httpd/trunk/modules/aaa/mod_authz_dbm.c

Modified: httpd/httpd/trunk/modules/aaa/mod_authz_dbm.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/aaa/mod_authz_dbm.c?rev=1554181&r1=1554180&r2=1554181&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/aaa/mod_authz_dbm.c (original)
+++ httpd/httpd/trunk/modules/aaa/mod_authz_dbm.c Mon Dec 30 10:52:58 2013
@@ -297,7 +297,7 @@ static const char *dbm_parse_config(cmd_
 static const authz_provider authz_dbmgroup_provider =
 {
     &dbmgroup_check_authorization,
-    dbm_parse_config,
+    &dbm_parse_config,
 };
 
 static const authz_provider authz_dbmfilegroup_provider =