Fix module scope, to avoid this, copy and past from loadable modules, not core

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@767806 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
William A. Rowe Jr
2009-04-23 05:38:45 +00:00
parent f008e3d952
commit e1ce763c78
2 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@
extern module AP_MODULE_DECLARE_DATA dbd_module;
APR_IMPLEMENT_OPTIONAL_HOOK_RUN_ALL(dbd, AP, apr_status_t, post_connect,
APR_IMPLEMENT_OPTIONAL_HOOK_RUN_ALL(dbd, DBD, apr_status_t, post_connect,
(apr_pool_t *pool, dbd_cfg_t *cfg,
ap_dbd_t *dbd),
(pool, cfg, dbd), OK, DECLINED)

View File

@ -115,7 +115,7 @@ APR_DECLARE_OPTIONAL_FN(ap_dbd_t*, ap_dbd_acquire, (request_rec*));
APR_DECLARE_OPTIONAL_FN(ap_dbd_t*, ap_dbd_cacquire, (conn_rec*));
APR_DECLARE_OPTIONAL_FN(void, ap_dbd_prepare, (server_rec*, const char*, const char*));
APR_DECLARE_EXTERNAL_HOOK(dbd, AP, apr_status_t, post_connect,
APR_DECLARE_EXTERNAL_HOOK(dbd, DBD, apr_status_t, post_connect,
(apr_pool_t *, dbd_cfg_t *, ap_dbd_t *));
#endif