* mod_auth.h: Fix up blurb on how to retrieve ap_satisfies to match what
mod_authz_core and friends use which does work on Windows.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@490054
13f79535-47bb-0310-9956-
ffa450edef68
APR_DECLARE_OPTIONAL_FN(int, ap_satisfies, (request_rec *r));
/* If your module uses ap_satisfies then you MUST add the line
- * below to your module for it to work correctly.
-extern APR_OPTIONAL_FN_TYPE(ap_satisfies) *ap_satisfies;
+ * below to your module for it to work correctly:
+ * APR_OPTIONAL_FN_TYPE(ap_satisfies) *ap_satisfies;
+ * and retrieve the optional function in the optional_fn_retrieve hook.
+ * (See mod_authz_core.c for an example)
*/
typedef enum {