diff options
Diffstat (limited to 'runtime/conf.c')
-rw-r--r-- | runtime/conf.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/runtime/conf.c b/runtime/conf.c index 2e21f3cb..7849598e 100644 --- a/runtime/conf.c +++ b/runtime/conf.c @@ -830,8 +830,7 @@ setActionScope(void) /* now tell each action to start the scope */ node = NULL; while((node = module.GetNxtCnfType(loadConf, node, eMOD_OUT)) != NULL) { - DBGPRINTF("beginning scope on module %s\n", node->pMod->pszName); - node->pMod->mod.om.newScope(); + DBGPRINTF("NO LONGER SUPPORTED beginning scope on module %s\n", node->pMod->pszName); } finalize_it: @@ -855,8 +854,7 @@ unsetActionScope(void) /* now tell each action to restore the scope */ node = NULL; while((node = module.GetNxtCnfType(loadConf, node, eMOD_OUT)) != NULL) { - DBGPRINTF("exiting scope on module %s\n", node->pMod->pszName); - node->pMod->mod.om.restoreScope(); + DBGPRINTF("NO LONGER SUPPORTED exiting scope on module %s\n", node->pMod->pszName); } finalize_it: |