From: Jeff Trawick Date: Mon, 2 Dec 2013 15:42:34 +0000 (+0000) Subject: Fix module id in log messages issued from main.c X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5632bca3a49c5067b942141ec842ed3f44b65126;p=thirdparty%2Fapache%2Fhttpd.git Fix module id in log messages issued from main.c Submitted by: rjung git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1547065 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/main.c b/server/main.c index 836316ffae8..fc2d22c8e93 100644 --- a/server/main.c +++ b/server/main.c @@ -50,6 +50,10 @@ #define isatty(n) (0) #endif +/* we know core's module_index is 0 */ +#undef APLOG_MODULE_INDEX +#define APLOG_MODULE_INDEX AP_CORE_MODULE_INDEX + /* WARNING: Win32 binds http_main.c dynamically to the server. Please place * extern functions and global data in another appropriate module. *