summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorAndre Lorbach <alorbach@adiscon.com>2011-08-16 11:01:41 +0200
committerAndre Lorbach <alorbach@adiscon.com>2011-08-16 11:01:41 +0200
commit803462104b4eb319c05ea0f6e30c0b04548a1ed0 (patch)
tree994e92fbcb18fa858ac712fd2219cfa57a9e51c7 /tools
parent1b9a4f303bd3e0cb899788e1a8908ea60e23eadd (diff)
parent33bf53cdab0689bd7f100aca5f09dd6b69da0e94 (diff)
downloadrsyslog-803462104b4eb319c05ea0f6e30c0b04548a1ed0.tar.gz
rsyslog-803462104b4eb319c05ea0f6e30c0b04548a1ed0.tar.xz
rsyslog-803462104b4eb319c05ea0f6e30c0b04548a1ed0.zip
Merge branch 'v5-stable' into v5-devel
Conflicts: ChangeLog configure.ac
Diffstat (limited to 'tools')
-rw-r--r--tools/pmrfc3164.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/pmrfc3164.c b/tools/pmrfc3164.c
index 635ca985..d56e53f0 100644
--- a/tools/pmrfc3164.c
+++ b/tools/pmrfc3164.c
@@ -176,6 +176,7 @@ 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) {
bufParseTAG[i++] = *p2parse++;
@@ -191,6 +192,7 @@ CODESTARTparse
* 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