diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2012-06-29 12:54:49 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2012-06-29 12:54:49 +0200 |
commit | 8e8b77c7efc4e2d3844f9e3ce031c2355d2f3024 (patch) | |
tree | bdea958d43cef054f2d9eed45f09957a0a44ec85 /action.c | |
parent | cb2a78b30bf55fd3d356cad7048b9e70968dbb95 (diff) | |
parent | 10430a189af0ecdbdad6c2542280f6d397ec4752 (diff) | |
download | rsyslog-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.c | 28 |
1 files changed, 0 insertions, 28 deletions
@@ -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) { |