diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2012-07-24 12:40:13 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2012-07-24 12:40:13 +0200 |
commit | 686270440c601d5a4e3eac246397f60248889f5f (patch) | |
tree | b055ceba38bdf4218362fb5d9060fbf7e7a39ad5 | |
parent | ef91a26de7de0e5b39b963f984b05acbaa691460 (diff) | |
download | rsyslog-686270440c601d5a4e3eac246397f60248889f5f.tar.gz rsyslog-686270440c601d5a4e3eac246397f60248889f5f.tar.bz2 rsyslog-686270440c601d5a4e3eac246397f60248889f5f.zip |
bugfix: imptcp aborted when $InputPTCPServerBindRuleset was used
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | plugins/imptcp/imptcp.c | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -4,6 +4,7 @@ Version 6.3.13 [BETA] 2012-07-?? - bugfix: imtcp aborted when more than 2 connections were used. Incremented pthread stack size to 4MB for imtcp, imptcp and imttcp closes: http://bugzilla.adiscon.com/show_bug.cgi?id=342 +- bugfix: imptcp aborted when $InputPTCPServerBindRuleset was used --------------------------------------------------------------------------- Version 6.3.12 [BETA] 2012-07-02 - support for elasticsearch via omelasticsearch added diff --git a/plugins/imptcp/imptcp.c b/plugins/imptcp/imptcp.c index b63e7ca3..aa1ad81e 100644 --- a/plugins/imptcp/imptcp.c +++ b/plugins/imptcp/imptcp.c @@ -1616,7 +1616,7 @@ CODEmodInit_QueryRegCFSLineHdlr CHKiRet(omsdRegCFSLineHdlr(UCHAR_CONSTANT("inputptcpserverlistenip"), 0, eCmdHdlrGetWord, NULL, &cs.lstnIP, STD_LOADABLE_MODULE_ID)); CHKiRet(omsdRegCFSLineHdlr(UCHAR_CONSTANT("inputptcpserverbindruleset"), 0, - eCmdHdlrGetWord, NULL, cs.pszBindRuleset, STD_LOADABLE_MODULE_ID)); + eCmdHdlrGetWord, NULL, &cs.pszBindRuleset, STD_LOADABLE_MODULE_ID)); CHKiRet(omsdRegCFSLineHdlr(UCHAR_CONSTANT("resetconfigvariables"), 1, eCmdHdlrCustomHandler, resetConfigVariables, NULL, STD_LOADABLE_MODULE_ID)); ENDmodInit |