summaryrefslogtreecommitdiffstats
path: root/action.c
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2012-06-29 12:54:49 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2012-06-29 12:54:49 +0200
commit8e8b77c7efc4e2d3844f9e3ce031c2355d2f3024 (patch)
treebdea958d43cef054f2d9eed45f09957a0a44ec85 /action.c
parentcb2a78b30bf55fd3d356cad7048b9e70968dbb95 (diff)
parent10430a189af0ecdbdad6c2542280f6d397ec4752 (diff)
downloadrsyslog-8e8b77c7efc4e2d3844f9e3ce031c2355d2f3024.tar.gz
rsyslog-8e8b77c7efc4e2d3844f9e3ce031c2355d2f3024.tar.bz2
rsyslog-8e8b77c7efc4e2d3844f9e3ce031c2355d2f3024.zip
Merge branch 'beta' into master-module
Conflicts: ChangeLog configure.ac plugins/imklog/imklog.c plugins/imklog/imklog.h
Diffstat (limited to 'action.c')
-rw-r--r--action.c28
1 files changed, 0 insertions, 28 deletions
diff --git a/action.c b/action.c
index 5310a6a7..25fe380a 100644
--- a/action.c
+++ b/action.c
@@ -2010,34 +2010,6 @@ initConfigVariables(void)
}
-/* save our config and create a new scope. Note that things are messed up if
- * this is called while the config is already saved (we currently do not
- * have a stack as the design is we need none!
- * rgerhards, 2010-07-23
- */
-rsRetVal
-actionNewScope(void)
-{
- DEFiRet;
- memcpy(&cs_save, &cs, sizeof(cs));
- initConfigVariables();
- RETiRet;
-}
-
-
-/* restore previously saved scope.
- * rgerhards, 2010-07-23
- */
-rsRetVal
-actionRestoreScope(void)
-{
- DEFiRet;
- memcpy(&cs, &cs_save, sizeof(cs));
- RETiRet;
-}
-
-
-
rsRetVal
actionNewInst(struct nvlst *lst, action_t **ppAction)
{