You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by dr...@apache.org on 2006/02/18 23:44:35 UTC

svn commit: r378790 - /httpd/httpd/trunk/modules/aaa/mod_authz_default.c

Author: dreid
Date: Sat Feb 18 14:44:30 2006
New Revision: 378790

URL: http://svn.apache.org/viewcvs?rev=378790&view=rev
Log:
This should cure the build issues people are having and would
seem to be closer to the correct solution.

Having this defined as a symbol without it being set seems
plain wrong.

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

Modified: httpd/httpd/trunk/modules/aaa/mod_authz_default.c
URL: http://svn.apache.org/viewcvs/httpd/httpd/trunk/modules/aaa/mod_authz_default.c?rev=378790&r1=378789&r2=378790&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/aaa/mod_authz_default.c (original)
+++ httpd/httpd/trunk/modules/aaa/mod_authz_default.c Sat Feb 18 14:44:30 2006
@@ -52,7 +52,7 @@
 
 module AP_MODULE_DECLARE_DATA authz_default_module;
 
-APR_OPTIONAL_FN_TYPE(ap_satisfies) *ap_satisfies;
+extern APR_OPTIONAL_FN_TYPE(ap_satisfies) *ap_satisfies;
 
 static int check_user_access(request_rec *r)
 {