diff options
author | varmojfekoj <theinric@redhat.com> | 2009-01-15 12:59:21 +0100 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2009-01-15 12:59:21 +0100 |
commit | e2ffeb19f9c2962fd711e28d50ce0d51ae3bbc45 (patch) | |
tree | 6f2d19abd88c410e3eda43799de46aa3cccd3bb5 /tools | |
parent | 44e35af7a851ce920d4db312acd9a2cdf516a81c (diff) | |
download | rsyslog-e2ffeb19f9c2962fd711e28d50ce0d51ae3bbc45.tar.gz rsyslog-e2ffeb19f9c2962fd711e28d50ce0d51ae3bbc45.tar.xz rsyslog-e2ffeb19f9c2962fd711e28d50ce0d51ae3bbc45.zip |
bugfix: the string "Do Die" was accidently emited upon exit in non-debug mode
Signed-off-by: Rainer Gerhards <rgerhards@adiscon.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/syslogd.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/syslogd.c b/tools/syslogd.c index fd34c9f5..bc1f71d3 100644 --- a/tools/syslogd.c +++ b/tools/syslogd.c @@ -1877,9 +1877,11 @@ static void doDie(int sig) # define MSG1 "DoDie called.\n" # define MSG2 "DoDie called 5 times - unconditional exit\n" static int iRetries = 0; /* debug aid */ - write(1, MSG1, sizeof(MSG1)); + if(Debug || NoFork) + write(1, MSG1, sizeof(MSG1) - 1); if(iRetries++ == 4) { - write(1, MSG2, sizeof(MSG2)); + if(Debug || NoFork) + write(1, MSG2, sizeof(MSG2) - 1); abort(); } bFinished = sig; |