From bd03b86c6322c82fc9f667122f4365e339f28ccc Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Tue, 19 Jan 2010 15:49:26 +0100 Subject: bugfix: -d did not enable display of debug messages regression from introduction of "debug on demand" mode Thanks to Michael Biebl for reporting this bug --- tools/syslogd.c | 1 + 1 file changed, 1 insertion(+) (limited to 'tools') diff --git a/tools/syslogd.c b/tools/syslogd.c index 3dd51adf..ab8f015d 100644 --- a/tools/syslogd.c +++ b/tools/syslogd.c @@ -3203,6 +3203,7 @@ int realMain(int argc, char **argv) iCompatibilityMode = atoi(optarg); break; case 'd': /* debug - must be handled now, so that debug is active during init! */ + debugging_on = 1; Debug = 1; break; case 'e': /* log every message (no repeat message supression) */ -- cgit