summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2011-08-30 16:01:12 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2011-08-30 16:01:12 +0200
commita8b231875ba6990422f85bd60237c5a2f3c4e7d0 (patch)
tree247851ec5e4a91e02390d0fff3e2549f52759e20 /tools
parente14d353e69a75290c3e4004df79f42a22bfe4cab (diff)
parent43dd1bc0e659f3ddce2f2c5138864d36a5647846 (diff)
downloadrsyslog-a8b231875ba6990422f85bd60237c5a2f3c4e7d0.tar.gz
rsyslog-a8b231875ba6990422f85bd60237c5a2f3c4e7d0.tar.xz
rsyslog-a8b231875ba6990422f85bd60237c5a2f3c4e7d0.zip
Merge branch 'beta'
Conflicts: ChangeLog
Diffstat (limited to 'tools')
-rw-r--r--tools/pmrfc3164.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/tools/pmrfc3164.c b/tools/pmrfc3164.c
index d56e53f0..6d2d22b1 100644
--- a/tools/pmrfc3164.c
+++ b/tools/pmrfc3164.c
@@ -176,9 +176,8 @@ CODESTARTparse
* in RFC3164...). We now receive the full size, but will modify the
* outputs so that only 32 characters max are used by default.
*/
-dbgprintf("pmrfc3164:tag:in: lenMsg %d, p2parse: '%s'\n", lenMsg, p2parse);
i = 0;
- while(lenMsg > 0 && *p2parse != ':' && *p2parse != ' ' && i < CONF_TAG_MAXSIZE) {
+ while(lenMsg > 0 && *p2parse != ':' && *p2parse != ' ' && i < CONF_TAG_MAXSIZE - 2) {
bufParseTAG[i++] = *p2parse++;
--lenMsg;
}
@@ -192,7 +191,6 @@ dbgprintf("pmrfc3164:tag:in: lenMsg %d, p2parse: '%s'\n", lenMsg, p2parse);
* is considered OK. So we do not need to check for empty TAG. -- rgerhards, 2009-06-23
*/
bufParseTAG[i] = '\0'; /* terminate string */
-dbgprintf("pmrfc3164:tag:done: lenMsg %d, i %d, bufParseTAG: '%s'\n", lenMsg, i, bufParseTAG);
MsgSetTAG(pMsg, bufParseTAG, i);
} else {/* we enter this code area when the user has instructed rsyslog NOT
* to parse HOSTNAME and TAG - rgerhards, 2006-03-13