diff options
author | David Reid <dreid@apache.org> | 2006-02-16 23:28:44 +0000 |
---|---|---|
committer | David Reid <dreid@apache.org> | 2006-02-16 23:28:44 +0000 |
commit | 16394077975d5b4bc85eb0da33c7cbd515c9f24e (patch) | |
tree | 4c20c018829d99df6b9180d9ed9a4884f37c4d31 /modules | |
parent | 25f7c48737e0d0a98f86cb1b52065a69e7d72810 (diff) | |
download | httpd-16394077975d5b4bc85eb0da33c7cbd515c9f24e.tar.gz |
- add a define for ap_satisfies which is now an optional fn. Without
this httpd crashes with a SIGBUS when calling ap_satisfies.
This gets mod_authz_svn working again with trunk.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@378394 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules')
-rw-r--r-- | modules/aaa/mod_auth.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/aaa/mod_auth.h b/modules/aaa/mod_auth.h index 8b65816890..abab2ee9a7 100644 --- a/modules/aaa/mod_auth.h +++ b/modules/aaa/mod_auth.h @@ -54,6 +54,8 @@ extern "C" { APR_DECLARE_OPTIONAL_FN(int, ap_satisfies, (request_rec *r)); +extern APR_OPTIONAL_FN_TYPE(ap_satisfies) *ap_satisfies; + typedef enum { AUTH_DENIED, AUTH_GRANTED, |