diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-01-14 13:30:15 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-01-14 13:30:15 +0000 |
commit | 3b176b63e167c0d3ca0aefdd549b667bd863a1f0 (patch) | |
tree | 9c3a06d5dab0537849f63d24e68b0d80e425a2fb /syslogd.c | |
parent | 7eb0a763c32c9887dd0b1523ac154757f641e27e (diff) | |
download | rsyslog-3b176b63e167c0d3ca0aefdd549b667bd863a1f0.tar.gz rsyslog-3b176b63e167c0d3ca0aefdd549b667bd863a1f0.tar.bz2 rsyslog-3b176b63e167c0d3ca0aefdd549b667bd863a1f0.zip |
fixed a bug with standard template definitions (not a big deal) - thanks to
varmojfekoj for spotting it
Diffstat (limited to 'syslogd.c')
-rw-r--r-- | syslogd.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -6222,7 +6222,7 @@ static void mainThread() pTmp = template_StdUsrMsgFmt; tplAddLine(" StdUsrMsgFmt", &pTmp); pTmp = template_StdDBFmt; - tplLastStaticInit(tplAddLine(" StdDBFmt", &pTmp)); + tplAddLine(" StdDBFmt", &pTmp); pTmp = template_StdPgSQLFmt; tplLastStaticInit(tplAddLine(" StdPgSQLFmt", &pTmp)); |