summaryrefslogtreecommitdiffstats
path: root/runtime/rsconf.c
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2012-09-28 11:06:16 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2012-09-28 11:06:16 +0200
commit38cdf1abaddea47aa5e9d11d97fade6a2455b632 (patch)
tree7676ef3216c6f322a47c5a0840a44c3ab0fc3029 /runtime/rsconf.c
parentb0764541ab2f2d0448ca79564479bb5865a02ecf (diff)
downloadrsyslog-38cdf1abaddea47aa5e9d11d97fade6a2455b632.tar.gz
rsyslog-38cdf1abaddea47aa5e9d11d97fade6a2455b632.tar.xz
rsyslog-38cdf1abaddea47aa5e9d11d97fade6a2455b632.zip
Implement RainerScript ruleset() statement
Diffstat (limited to 'runtime/rsconf.c')
-rw-r--r--runtime/rsconf.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/rsconf.c b/runtime/rsconf.c
index 982013e9..97680795 100644
--- a/runtime/rsconf.c
+++ b/runtime/rsconf.c
@@ -412,6 +412,9 @@ void cnfDoObj(struct cnfobj *o)
case CNFOBJ_TPL:
tplProcessCnf(o);
break;
+ case CNFOBJ_RULESET:
+ rulesetProcessCnf(o);
+ break;
case CNFOBJ_PROPERTY:
case CNFOBJ_CONSTANT:
/* these types are processed at a later stage */