diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2013-09-03 12:16:26 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2013-09-03 12:16:26 +0200 |
commit | 0ad1641dfc152959d76bad4b160b94dc27d7e9ce (patch) | |
tree | b77f86a9cb03a42225dfff0f5a925bd3e830a9c9 | |
parent | 45dfdbde967036b621611d55e22decdde64175f5 (diff) | |
download | rsyslog-0ad1641dfc152959d76bad4b160b94dc27d7e9ce.tar.gz rsyslog-0ad1641dfc152959d76bad4b160b94dc27d7e9ce.tar.bz2 rsyslog-0ad1641dfc152959d76bad4b160b94dc27d7e9ce.zip |
regression fix: previous fix introduced wrong default template
The faulty code was never released.
-rw-r--r-- | plugins/omsnmp/omsnmp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/omsnmp/omsnmp.c b/plugins/omsnmp/omsnmp.c index 8ad424e6..42d1de6b 100644 --- a/plugins/omsnmp/omsnmp.c +++ b/plugins/omsnmp/omsnmp.c @@ -430,7 +430,7 @@ CODESTARTnewActInst } CHKiRet(OMSRsetEntry(*ppOMSR, 0, (uchar*)strdup((pData->tplName == NULL) ? - "RSYSLOG_ForwardFormat" : (char*)pData->tplName), + "RSYSLOG_FileFormat" : (char*)pData->tplName), OMSR_NO_RQD_TPL_OPTS)); CODE_STD_FINALIZERnewActInst |