summaryrefslogtreecommitdiffstats
path: root/runtime/rsyslog.c
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2012-09-10 18:41:43 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2012-09-10 18:41:43 +0200
commit7c0f8bf6c1413ab10015f656104cc3a42bea8907 (patch)
treecfdd82d9cca0ce4a9d29b64966a1b32442c85df5 /runtime/rsyslog.c
parent9fd578a8683813fe461b0b303ad23b9ee4f56ebc (diff)
parentd3bb43798c95f9d95f9e031387f4aedd814c34ab (diff)
downloadrsyslog-7c0f8bf6c1413ab10015f656104cc3a42bea8907.tar.gz
rsyslog-7c0f8bf6c1413ab10015f656104cc3a42bea8907.tar.bz2
rsyslog-7c0f8bf6c1413ab10015f656104cc3a42bea8907.zip
Merge branch 'master-newruleset'
Diffstat (limited to 'runtime/rsyslog.c')
-rw-r--r--runtime/rsyslog.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/runtime/rsyslog.c b/runtime/rsyslog.c
index cbab06b7..047dfa9b 100644
--- a/runtime/rsyslog.c
+++ b/runtime/rsyslog.c
@@ -72,7 +72,6 @@
#include "glbl.h"
#include "errmsg.h"
#include "prop.h"
-#include "rule.h"
#include "ruleset.h"
#include "parser.h"
#include "strgen.h"
@@ -171,8 +170,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 +217,6 @@ rsrtExit(void)
confClassExit();
glblClassExit();
rulesetClassExit();
- ruleClassExit();
objClassExit(); /* *THIS* *MUST/SHOULD?* always be the first class initilizer being called (except debug)! */
}