diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2012-01-19 12:33:12 +0100 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2012-01-19 12:33:12 +0100 |
commit | b38dd53e08258bc694f16373671be9c1c3deaa0c (patch) | |
tree | 1fcda4ee47929850e8288b08d299c7df289d0f3e /plugins/imrelp/imrelp.c | |
parent | 9b24152b6ac6af942a62675c6136316fd487b661 (diff) | |
download | rsyslog-b38dd53e08258bc694f16373671be9c1c3deaa0c.tar.gz rsyslog-b38dd53e08258bc694f16373671be9c1c3deaa0c.tar.bz2 rsyslog-b38dd53e08258bc694f16373671be9c1c3deaa0c.zip |
undoing v6.1 config scoping interface, part II (now finished)
This concludes the removal of the new scoping interface, at least as
far as pre v6-plugins are affected. Full code cleanup will happen
in the v6.3 branch.
Diffstat (limited to 'plugins/imrelp/imrelp.c')
-rw-r--r-- | plugins/imrelp/imrelp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/imrelp/imrelp.c b/plugins/imrelp/imrelp.c index 4bafa441..602809ff 100644 --- a/plugins/imrelp/imrelp.c +++ b/plugins/imrelp/imrelp.c @@ -192,9 +192,9 @@ CODEmodInit_QueryRegCFSLineHdlr /* register config file handlers */ CHKiRet(omsdRegCFSLineHdlr((uchar *)"inputrelpserverrun", 0, eCmdHdlrGetWord, - addListener, NULL, STD_LOADABLE_MODULE_ID, eConfObjGlobal)); + addListener, NULL, STD_LOADABLE_MODULE_ID)); CHKiRet(omsdRegCFSLineHdlr((uchar *)"resetconfigvariables", 1, eCmdHdlrCustomHandler, - resetConfigVariables, NULL, STD_LOADABLE_MODULE_ID, eConfObjGlobal)); + resetConfigVariables, NULL, STD_LOADABLE_MODULE_ID)); ENDmodInit |