diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2013-01-13 11:07:44 +0100 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2013-01-13 11:07:44 +0100 |
commit | f347f71da79f1ca5a11a6a6e3e00c17587c04c12 (patch) | |
tree | 5b75103991e1222131e8fee0ab1a1eeaeedc1996 | |
parent | 2d7cf0b59b0579f120b2ce81ed1a0843d65bcffe (diff) | |
download | rsyslog-f347f71da79f1ca5a11a6a6e3e00c17587c04c12.tar.gz rsyslog-f347f71da79f1ca5a11a6a6e3e00c17587c04c12.tar.bz2 rsyslog-f347f71da79f1ca5a11a6a6e3e00c17587c04c12.zip |
fix compile problem in imklog
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | plugins/imkmsg/imkmsg.c | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -3,6 +3,7 @@ Version 7.3.6 [devel] 2012-12-?? - impstats: added ability to write stats records to local file and avoid going through the syslog log stream. syslog logging can now also be turned off (see doc for details). +- fix compile problem in imklog --------------------------------------------------------------------------- Version 7.3.5 [devel] 2012-12-19 - ommysql: addded batching/transaction support diff --git a/plugins/imkmsg/imkmsg.c b/plugins/imkmsg/imkmsg.c index d1a83879..2a97f82d 100644 --- a/plugins/imkmsg/imkmsg.c +++ b/plugins/imkmsg/imkmsg.c @@ -113,7 +113,7 @@ enqMsg(uchar *msg, uchar* pszTag, int iFacility, int iSeverity, struct timeval * pMsg->iFacility = iFacility; pMsg->iSeverity = iSeverity; pMsg->json = json; - CHKiRet(submitMsg(pMsg, NULL)); + CHKiRet(submitMsg(pMsg)); finalize_it: RETiRet; |