/*
* Log the call and exit.
*/
- trace_startup(ptemp, NULL, NULL, "x_pre_config()");
+ trace_startup(pconf, NULL, NULL, "x_pre_config()");
return OK;
}
/*
* Log the call and exit.
*/
- trace_startup(ptemp, s, NULL, "x_check_config()");
+ trace_startup(pconf, s, NULL, "x_check_config()");
return OK;
}
/*
* Log the call and exit.
*/
- trace_startup(ptemp, s, NULL, "x_open_logs()");
+ trace_startup(pconf, s, NULL, "x_open_logs()");
return OK;
}
/*
* Log the call and exit.
*/
- trace_startup(ptemp, s, NULL, "x_post_config()");
+ trace_startup(pconf, s, NULL, "x_post_config()");
return OK;
}
*/
static void x_register_hooks(apr_pool_t *p)
{
+ trace = NULL;
ap_hook_pre_config(x_pre_config, NULL, NULL, APR_HOOK_MIDDLE);
ap_hook_check_config(x_check_config, NULL, NULL, APR_HOOK_MIDDLE);
ap_hook_test_config(x_test_config, NULL, NULL, APR_HOOK_MIDDLE);