summaryrefslogtreecommitdiffstats
path: root/action.c
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2012-09-24 19:37:16 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2012-09-24 19:37:16 +0200
commit39b9aac66390eab4a7a9c0898744363a61cd4457 (patch)
tree74238e62fe05a688c66712f79303883cf6e8e6ec /action.c
parent8d99cfe38509aeadf169ba63c0d6c841eb2ecbe3 (diff)
downloadrsyslog-39b9aac66390eab4a7a9c0898744363a61cd4457.tar.gz
rsyslog-39b9aac66390eab4a7a9c0898744363a61cd4457.tar.xz
rsyslog-39b9aac66390eab4a7a9c0898744363a61cd4457.zip
cleanup & better debug output
- removed no longer needed function - debug log now contains action type for action objects
Diffstat (limited to 'action.c')
-rw-r--r--action.c27
1 files changed, 0 insertions, 27 deletions
diff --git a/action.c b/action.c
index ad003118..8d3239b6 100644
--- a/action.c
+++ b/action.c
@@ -2095,33 +2095,6 @@ finalize_it:
RETiRet;
}
-
-/* Process a rsyslog v6 action config object (the now-primary config method).
- * rgerhards, 2011-07-19
- */
-rsRetVal
-actionProcessCnf(struct cnfobj *o)
-{
- DEFiRet;
-#if 0 /* we need to check if we actually need this functionality -- later! */
-// This is for STAND-ALONE actions at the conf file TOP level
- struct cnfparamvals *paramvals;
-
- paramvals = nvlstGetParams(o->nvlst, &pblk, NULL);
- if(paramvals == NULL) {
- iRet = RS_RET_ERR;
- goto finalize_it;
- }
- DBGPRINTF("action param blk after actionProcessCnf:\n");
- cnfparamsPrint(&pblk, paramvals);
-
- /* now find module to activate */
-finalize_it:
-#endif
- RETiRet;
-}
-
-
/* TODO: we are not yet a real object, the ClassInit here just looks like it is..
*/
rsRetVal actionClassInit(void)