diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2012-11-01 19:03:52 +0100 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2012-11-01 19:03:52 +0100 |
commit | b6e41c0d9e71459d82b551692f3aa0079dec3f8b (patch) | |
tree | f16a76a80a501652cabf73c8e2ab34abed9b68bf | |
parent | 2ff43aa8c4b9b5aac3f053a2656f2fba9d7addf2 (diff) | |
download | rsyslog-b6e41c0d9e71459d82b551692f3aa0079dec3f8b.tar.gz rsyslog-b6e41c0d9e71459d82b551692f3aa0079dec3f8b.tar.bz2 rsyslog-b6e41c0d9e71459d82b551692f3aa0079dec3f8b.zip |
bugfix: misaddressing of $mmnormalizeuserawmsg parameter
On many platforms, this has no effect at all. At some, it may cause
a segfault. The problem occurs only during config phase, no segfault
happens when rsyslog has fully started.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | plugins/mmnormalize/mmnormalize.c | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,6 +1,10 @@ --------------------------------------------------------------------------- Version 6.6.1 [v6-stable] 2012-10-?? - bugfix: build problems on some platforms +- bugfix: misaddressing of $mmnormalizeuserawmsg parameter + On many platforms, this has no effect at all. At some, it may cause + a segfault. The problem occurs only during config phase, no segfault + happens when rsyslog has fully started. --------------------------------------------------------------------------- Version 6.6.0 [v6-stable] 2012-10-22 This starts a new stable branch, based on the 6.5.x series, plus: diff --git a/plugins/mmnormalize/mmnormalize.c b/plugins/mmnormalize/mmnormalize.c index c5b290f4..2dacb80b 100644 --- a/plugins/mmnormalize/mmnormalize.c +++ b/plugins/mmnormalize/mmnormalize.c @@ -67,7 +67,7 @@ typedef struct _instanceData { typedef struct configSettings_s { uchar *rulebase; /**< name of normalization rulebase to use */ - sbool bUseRawMsg; /**< use %rawmsg% instead of %msg% */ + int bUseRawMsg; /**< use %rawmsg% instead of %msg% */ } configSettings_t; static configSettings_t cs; |