summaryrefslogtreecommitdiffstats
path: root/runtime/rule.c
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2011-07-15 14:42:17 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2011-07-15 14:42:17 +0200
commit03a21b56f237fa33198c3124ea66e3cfd7848552 (patch)
tree54ea840b0b2af457efe82e2c577c6ba699484c46 /runtime/rule.c
parentfa5c1371db8669043c30f402d9a096e7036a8dcd (diff)
downloadrsyslog-03a21b56f237fa33198c3124ea66e3cfd7848552.tar.gz
rsyslog-03a21b56f237fa33198c3124ea66e3cfd7848552.tar.xz
rsyslog-03a21b56f237fa33198c3124ea66e3cfd7848552.zip
some more cleanup
preparing for a new, higher performance, variant object type
Diffstat (limited to 'runtime/rule.c')
-rw-r--r--runtime/rule.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/runtime/rule.c b/runtime/rule.c
index cbd2660d..1d707634 100644
--- a/runtime/rule.c
+++ b/runtime/rule.c
@@ -44,7 +44,6 @@
/* static data */
DEFobjStaticHelpers
DEFobjCurrIf(errmsg)
-DEFobjCurrIf(var)
/* support for simple textual representation of FIOP names
@@ -455,7 +454,6 @@ ENDobjQueryInterface(rule)
*/
BEGINObjClassExit(rule, OBJ_IS_CORE_MODULE) /* class, version */
objRelease(errmsg, CORE_COMPONENT);
- objRelease(var, CORE_COMPONENT);
ENDObjClassExit(rule)
@@ -466,7 +464,6 @@ ENDObjClassExit(rule)
BEGINObjClassInit(rule, 1, OBJ_IS_CORE_MODULE) /* class, version */
/* request objects we use */
CHKiRet(objUse(errmsg, CORE_COMPONENT));
- CHKiRet(objUse(var, CORE_COMPONENT));
/* set our own handlers */
OBJSetMethodHandler(objMethod_DEBUGPRINT, ruleDebugPrint);