diff options
-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; |