summaryrefslogtreecommitdiffstats
path: root/runtime/rsyslog.c
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2012-09-06 11:09:16 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2012-09-06 11:09:16 +0200
commit200e08ac4252a0a0eca31a441e63688179baebb1 (patch)
treeb35ba6268808cf562e72267b4392ab224e6eb7f6 /runtime/rsyslog.c
parentd3e96418f514cd69592be24af6a632a8491820fc (diff)
downloadrsyslog-200e08ac4252a0a0eca31a441e63688179baebb1.tar.gz
rsyslog-200e08ac4252a0a0eca31a441e63688179baebb1.tar.xz
rsyslog-200e08ac4252a0a0eca31a441e63688179baebb1.zip
new ruleengine: some cleanup
Diffstat (limited to 'runtime/rsyslog.c')
-rw-r--r--runtime/rsyslog.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/runtime/rsyslog.c b/runtime/rsyslog.c
index cbab06b7..73d3bd43 100644
--- a/runtime/rsyslog.c
+++ b/runtime/rsyslog.c
@@ -171,8 +171,6 @@ rsrtInit(char **ppErrObj, obj_if_t *pObjIF)
CHKiRet(glblClassInit(NULL));
if(ppErrObj != NULL) *ppErrObj = "msg";
CHKiRet(msgClassInit(NULL));
- if(ppErrObj != NULL) *ppErrObj = "rule";
- CHKiRet(ruleClassInit(NULL));
if(ppErrObj != NULL) *ppErrObj = "ruleset";
CHKiRet(rulesetClassInit(NULL));
if(ppErrObj != NULL) *ppErrObj = "wti";
@@ -220,7 +218,6 @@ rsrtExit(void)
confClassExit();
glblClassExit();
rulesetClassExit();
- ruleClassExit();
objClassExit(); /* *THIS* *MUST/SHOULD?* always be the first class initilizer being called (except debug)! */
}