Commit 9d1f51f5 authored by Justin Erenkrantz's avatar Justin Erenkrantz
Browse files

Fix comment to allow modules using the new authz scheme to work on Win32.

* 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
parent 23285cea
Loading
Loading
Loading
Loading
+4 −2
Changes for modules/aaa/mod_auth.h: 4 added lines, 2 removed lines.
Original line number Diff line number Diff line
@@ -56,8 +56,10 @@ extern "C" {
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 {