From aa4f8f9c06eec26248f068f445fe2412cb6f467b Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Mon, 13 Oct 2014 16:46:26 -0400 Subject: Properly initialize logging We need to call APLOG_USE_MODULE() so that the module name is reported properly in log lines, and per module logging level can be set. Fixes #6 --- src/mod_auth_gssapi.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/mod_auth_gssapi.c') diff --git a/src/mod_auth_gssapi.c b/src/mod_auth_gssapi.c index c33ea34..f2fab57 100644 --- a/src/mod_auth_gssapi.c +++ b/src/mod_auth_gssapi.c @@ -28,6 +28,8 @@ module AP_MODULE_DECLARE_DATA auth_gssapi_module; +APLOG_USE_MODULE(auth_gssapi); + APR_DECLARE_OPTIONAL_FN(int, ssl_is_https, (conn_rec *)); static char *mag_status(request_rec *req, int type, uint32_t err) -- cgit