summaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2012-07-24 12:40:13 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2012-07-24 12:40:13 +0200
commit686270440c601d5a4e3eac246397f60248889f5f (patch)
treeb055ceba38bdf4218362fb5d9060fbf7e7a39ad5 /plugins
parentef91a26de7de0e5b39b963f984b05acbaa691460 (diff)
downloadrsyslog-686270440c601d5a4e3eac246397f60248889f5f.tar.gz
rsyslog-686270440c601d5a4e3eac246397f60248889f5f.tar.xz
rsyslog-686270440c601d5a4e3eac246397f60248889f5f.zip
bugfix: imptcp aborted when $InputPTCPServerBindRuleset was used
Diffstat (limited to 'plugins')
-rw-r--r--plugins/imptcp/imptcp.c2
1 files changed, 1 insertions, 1 deletions
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