diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-02-11 08:47:15 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-02-11 08:47:15 +0000 |
commit | 91b54ed246977cb961977ca400c19b6d5b107583 (patch) | |
tree | 5c5b7494423b4225d4847e8a03c52a71beb55b6d /syslogd.c | |
parent | a745208787f3b2752e17d3171ca3e2a2f4f0d5c4 (diff) | |
download | rsyslog-91b54ed246977cb961977ca400c19b6d5b107583.tar.gz rsyslog-91b54ed246977cb961977ca400c19b6d5b107583.tar.bz2 rsyslog-91b54ed246977cb961977ca400c19b6d5b107583.zip |
bugfix: trailing ":" of tag was lost while parsing legacy syslog messages
without timestamp - thanks to Anders Blomdell for providing a patch!
Diffstat (limited to 'syslogd.c')
-rw-r--r-- | syslogd.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -3113,7 +3113,9 @@ static int parseLegacySyslogMsg(msg_t *pMsg, int flags) */ if(*p2parse == ':') { bTAGCharDetected = 1; - ++p2parse; + /* We will move hostname to tag, so preserve ':' (otherwise we + * will needlessly change the message format) */ + *pWork++ = *p2parse++; } else if(*p2parse == ' ') ++p2parse; *pWork = '\0'; |