diff options
Diffstat (limited to 'modules/test/mod_optional_hook_export.c')
-rw-r--r-- | modules/test/mod_optional_hook_export.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/test/mod_optional_hook_export.c b/modules/test/mod_optional_hook_export.c index 34ef97b543..e17660572d 100644 --- a/modules/test/mod_optional_hook_export.c +++ b/modules/test/mod_optional_hook_export.c @@ -57,13 +57,13 @@ #include "mod_optional_hook_export.h" #include "http_protocol.h" -APR_IMPLEMENT_OPTIONAL_HOOK_RUN_ALL(ap,AP_MODULE,int,generic_hook_test, +APR_IMPLEMENT_OPTIONAL_HOOK_RUN_ALL(ap,AP_MODULE,int,optional_hook_test, (const char *szStr), (szStr),OK,DECLINED) static int ExportLogTransaction(request_rec *r) { - return ap_run_generic_hook_test(r->the_request); + return ap_run_optional_hook_test(r->the_request); } static void ExportRegisterHooks(apr_pool_t *p) |