From 702140afad013a94450397f72fe1a5452178ee1b Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Thu, 4 Sep 2008 14:18:42 +0200 Subject: bugfix: error code -2025 was used for two different errors. Queue full is now -2074 and -2025 is unique again. (did cause no real problem except for troubleshooting) --- ChangeLog | 3 +++ 1 file changed, 3 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 7b24ac20..a967f4a7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -13,6 +13,9 @@ Version 3.18.4 (rgerhards), 2008-09-?? patch. - doc bugfix: rsyslog.conf man page improved and minor nit fixed thanks to Lukas Kuklinek for the patch. +- bugfix: error code -2025 was used for two different errors. queue full + is now -2074 and -2025 is unique again. (did cause no real problem + except for troubleshooting) --------------------------------------------------------------------------- Version 3.18.3 (rgerhards), 2008-08-18 - bugfix: imfile could cause a segfault upon rsyslogd HUP and termination -- cgit From 8cb83af1118b633d88cd01fefe2571e91918a9f9 Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Wed, 10 Sep 2008 08:14:12 +0200 Subject: bugfix: incorrect default discard severity could cause message loss default discard severity was incorrectly set to 4, which lead to discard-on-queue-full to be enabled by default. That could cause message loss where non was expected. The default has now been changed to the correct value of 8, which disables the functionality. This problem applied both to the main message queue and the action queues. Thanks to Raoul Bhatia for pointing out this problem. --- ChangeLog | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index a967f4a7..1534f36b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -16,6 +16,12 @@ Version 3.18.4 (rgerhards), 2008-09-?? - bugfix: error code -2025 was used for two different errors. queue full is now -2074 and -2025 is unique again. (did cause no real problem except for troubleshooting) +- bugfix: default discard severity was incorrectly set to 4, which lead + to discard-on-queue-full to be enabled by default. That could cause + message loss where non was expected. The default has now been changed + to the correct value of 8, which disables the functionality. This + problem applied both to the main message queue and the action queues. + Thanks to Raoul Bhatia for pointing out this problem. --------------------------------------------------------------------------- Version 3.18.3 (rgerhards), 2008-08-18 - bugfix: imfile could cause a segfault upon rsyslogd HUP and termination -- cgit From 7ad8addeb5b16669d67492188cb18646dd562484 Mon Sep 17 00:00:00 2001 From: Marius Tomaschewski Date: Wed, 10 Sep 2008 11:53:34 +0200 Subject: bugfix: option value for legacy -a option could not be specified resulting in strange operations. Signed-off-by: Rainer Gerhards --- ChangeLog | 3 +++ 1 file changed, 3 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 1534f36b..35041e63 100644 --- a/ChangeLog +++ b/ChangeLog @@ -22,6 +22,9 @@ Version 3.18.4 (rgerhards), 2008-09-?? to the correct value of 8, which disables the functionality. This problem applied both to the main message queue and the action queues. Thanks to Raoul Bhatia for pointing out this problem. +- bugfix: option value for legacy -a option could not be specified, + resulting in strange operations. Thanks to Marius Tomaschewski + for the patch. --------------------------------------------------------------------------- Version 3.18.3 (rgerhards), 2008-08-18 - bugfix: imfile could cause a segfault upon rsyslogd HUP and termination -- cgit From 920cc1e1640a7a01145111530106cf96a60b6086 Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Fri, 12 Sep 2008 14:20:47 +0200 Subject: bugfix: colon after date should be ignored, but was not. This has now been corrected. Required change to the internal ParseTIMESTAMP3164() interface. --- ChangeLog | 3 +++ 1 file changed, 3 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 35041e63..5491c407 100644 --- a/ChangeLog +++ b/ChangeLog @@ -25,6 +25,9 @@ Version 3.18.4 (rgerhards), 2008-09-?? - bugfix: option value for legacy -a option could not be specified, resulting in strange operations. Thanks to Marius Tomaschewski for the patch. +- bugfix: colon after date should be ignored, but was not. This has + now been corrected. Required change to the internal ParseTIMESTAMP3164() + interface. --------------------------------------------------------------------------- Version 3.18.3 (rgerhards), 2008-08-18 - bugfix: imfile could cause a segfault upon rsyslogd HUP and termination -- cgit From 4bc99a5ead6892393033d22d6ce46052aca36155 Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Fri, 12 Sep 2008 14:46:16 +0200 Subject: bugfix: copy&paste error lead to dangling if this caused a very minor issue with re-formatting a RFC3164 date when the message was invalidly formatted and had a colon immediately after the date. This was in the code for some years (even v1 had it) and I think it never had any effect at all in practice. Though, it should be fixed - but definitely nothing to worry about. --- ChangeLog | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 1db933ff..730f65bb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,12 @@ --------------------------------------------------------------------------- +Version 2.0.6 V2-STABLE (rgerhards), 2008-??-?? +- bugfix: copy&paste error lead to dangling if - this caused a very minor + issue with re-formatting a RFC3164 date when the message was invalidly + formatted and had a colon immediately after the date. This was in the + code for some years (even v1 had it) and I think it never had any + effect at all in practice. Though, it should be fixed - but definitely + nothing to worry about. +--------------------------------------------------------------------------- Version 2.0.6 V2-STABLE (rgerhards), 2008-08-07 - bugfix: IPv6 addresses could not be specified in forwarding actions New syntax @[addr]:port introduced to enable that. Root problem was IPv6 -- cgit