summaryrefslogtreecommitdiffstats
path: root/runtime/conf.c
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2012-01-19 14:10:29 +0100
committerRainer Gerhards <rgerhards@adiscon.com>2012-01-19 14:10:29 +0100
commit1049537cd853c9714c4bdc3fe4296dda8507900d (patch)
tree4c3abc43d79628c2ddb2e2510a8cb9e7aab09a1d /runtime/conf.c
parentb38dd53e08258bc694f16373671be9c1c3deaa0c (diff)
downloadrsyslog-1049537cd853c9714c4bdc3fe4296dda8507900d.tar.gz
rsyslog-1049537cd853c9714c4bdc3fe4296dda8507900d.tar.xz
rsyslog-1049537cd853c9714c4bdc3fe4296dda8507900d.zip
removing the newScope/resumeScope macro interfaces
to make using pre-v6-plugins even easier
Diffstat (limited to 'runtime/conf.c')
-rw-r--r--runtime/conf.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/runtime/conf.c b/runtime/conf.c
index 5118cdd9..7afc4f97 100644
--- a/runtime/conf.c
+++ b/runtime/conf.c
@@ -1286,8 +1286,7 @@ setActionScope(void)
/* now tell each action to start the scope */
pMod = NULL;
while((pMod = module.GetNxtType(pMod, eMOD_OUT)) != NULL) {
- DBGPRINTF("beginning scope on module %s\n", pMod->pszName);
- pMod->mod.om.newScope();
+ DBGPRINTF("NO LONGER SUPPORTED beginning scope on module %s\n", pMod->pszName);
}
finalize_it:
@@ -1311,8 +1310,7 @@ unsetActionScope(void)
/* now tell each action to restore the scope */
pMod = NULL;
while((pMod = module.GetNxtType(pMod, eMOD_OUT)) != NULL) {
- DBGPRINTF("exiting scope on module %s\n", pMod->pszName);
- pMod->mod.om.restoreScope();
+ DBGPRINTF("NO LONGER SUPPORTED exiting scope on module %s\n", pMod->pszName);
}
finalize_it: