]> arthur.barton.de Git - ngircd.git/commitdiff
Use lowercase "package name" for syslog logging again
authorAlexander Barton <alex@barton.de>
Mon, 29 Oct 2012 09:24:27 +0000 (10:24 +0100)
committerAlexander Barton <alex@barton.de>
Mon, 29 Oct 2012 09:24:27 +0000 (10:24 +0100)
This is how ngIRCd up to release 19.2 behaved; "bug" introduced by commit
67e882, "configure.in: require autoconf 2.67 and automake 1.11", which
changed the "PACKAGE_NAME" to "ngIRCd"; so use "PACKAGE" which still is
the lowercase version for initializing syslog logging.

src/ngircd/log.c

index 6f0c4c9db1129d3a2cc291d6d3811fd297591ebb..51bd2a5dc64d4989921e2f30445bab72c94cb997 100644 (file)
@@ -80,9 +80,9 @@ Log_Init(bool Daemon_Mode)
 #define LOG_CONS 0
 #endif
 #ifdef LOG_DAEMON
-       openlog(PACKAGE_NAME, LOG_CONS|LOG_PID, LOG_DAEMON);
+       openlog(PACKAGE, LOG_CONS|LOG_PID, LOG_DAEMON);
 #else
-       openlog(PACKAGE_NAME, LOG_CONS|LOG_PID, 0);
+       openlog(PACKAGE, LOG_CONS|LOG_PID, 0);
 #endif
 #endif
 } /* Log_Init */
@@ -99,7 +99,7 @@ Log_ReInit(void)
 #define LOG_CONS 0
 #endif
        closelog();
-       openlog(PACKAGE_NAME, LOG_CONS|LOG_PID, Conf_SyslogFacility);
+       openlog(PACKAGE, LOG_CONS|LOG_PID, Conf_SyslogFacility);
 #endif
        Log(LOG_NOTICE, "%s started.", NGIRCd_Version);
        Log(LOG_INFO, "Using configuration file \"%s\" ...", NGIRCd_ConfFile);
@@ -218,7 +218,7 @@ GLOBAL void
 Log_Init_Subprocess(char UNUSED *Name)
 {
 #ifdef SYSLOG
-       openlog(PACKAGE_NAME, LOG_CONS|LOG_PID, Conf_SyslogFacility);
+       openlog(PACKAGE, LOG_CONS|LOG_PID, Conf_SyslogFacility);
 #endif
 #ifdef DEBUG
        Log_Subprocess(LOG_DEBUG, "%s sub-process starting, PID %ld.",