diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-03-05 16:55:13 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-03-05 16:55:13 +0000 |
commit | f9105d514134152094dfd02cab5113650dc53f76 (patch) | |
tree | f3bda1c8ec41af8933554ddd8390d5fc00fd2767 /plugins/imtcp/imtcp.c | |
parent | 1560e84ff87dafd0d8b4fef3294a7a412e95b1c3 (diff) | |
download | rsyslog-f9105d514134152094dfd02cab5113650dc53f76.tar.gz rsyslog-f9105d514134152094dfd02cab5113650dc53f76.tar.xz rsyslog-f9105d514134152094dfd02cab5113650dc53f76.zip |
changed module loader to automatically add ".so" suffix if not specified
(over time, this shall also ease portability of config files)
Diffstat (limited to 'plugins/imtcp/imtcp.c')
-rw-r--r-- | plugins/imtcp/imtcp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/imtcp/imtcp.c b/plugins/imtcp/imtcp.c index fea79d49..ca52d3c5 100644 --- a/plugins/imtcp/imtcp.c +++ b/plugins/imtcp/imtcp.c @@ -204,7 +204,7 @@ CODESTARTmodInit CODEmodInit_QueryRegCFSLineHdlr pOurTcpsrv = NULL; /* request objects we use */ - CHKiRet(objUse(tcps_sess, "tcpsrv.so")); + CHKiRet(objUse(tcps_sess, "tcpsrv")); CHKiRet(objUse(tcpsrv, "tcpsrv")); /* register config file handlers */ |