summaryrefslogtreecommitdiffstats
path: root/runtime/rsconf.c
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2011-07-19 09:31:17 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2011-07-19 09:31:17 +0200
commit127d61fea78c967d2cdc536f898da425ffdd8a11 (patch)
treef0f72c30d774657b9ee81174a4a0701e87216de9 /runtime/rsconf.c
parent63d357862051fd8fea4e26bd424bdfc0e837a158 (diff)
downloadrsyslog-127d61fea78c967d2cdc536f898da425ffdd8a11.tar.gz
rsyslog-127d61fea78c967d2cdc536f898da425ffdd8a11.tar.xz
rsyslog-127d61fea78c967d2cdc536f898da425ffdd8a11.zip
milestone: first steps at global() conf obj implementation
also, the foundation for accessing conf file params has been laid. Still more work to do...
Diffstat (limited to 'runtime/rsconf.c')
-rw-r--r--runtime/rsconf.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/runtime/rsconf.c b/runtime/rsconf.c
index f369dadf..aa7a3e3b 100644
--- a/runtime/rsconf.c
+++ b/runtime/rsconf.c
@@ -356,6 +356,11 @@ void cnfDoObj(struct cnfobj *o)
{
dbgprintf("cnf:global:obj: ");
cnfobjPrint(o);
+ switch(o->objType) {
+ case CNFOBJ_GLOBAL:
+ glblProcessCnf(o);
+ break;
+ }
cnfobjDestruct(o);
}