summaryrefslogtreecommitdiffstats
path: root/runtime/modules.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/modules.c
parentb38dd53e08258bc694f16373671be9c1c3deaa0c (diff)
downloadrsyslog-1049537cd853c9714c4bdc3fe4296dda8507900d.tar.gz
rsyslog-1049537cd853c9714c4bdc3fe4296dda8507900d.tar.bz2
rsyslog-1049537cd853c9714c4bdc3fe4296dda8507900d.zip
removing the newScope/resumeScope macro interfaces
to make using pre-v6-plugins even easier
Diffstat (limited to 'runtime/modules.c')
-rw-r--r--runtime/modules.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/runtime/modules.c b/runtime/modules.c
index 8ede134b..23b5c94e 100644
--- a/runtime/modules.c
+++ b/runtime/modules.c
@@ -469,8 +469,6 @@ doModInit(rsRetVal (*modInit)(int, int*, rsRetVal(**)(), rsRetVal(*)(), modInfo_
CHKiRet((*pNew->modQueryEtryPt)((uchar*)"doAction", &pNew->mod.om.doAction));
CHKiRet((*pNew->modQueryEtryPt)((uchar*)"parseSelectorAct", &pNew->mod.om.parseSelectorAct));
CHKiRet((*pNew->modQueryEtryPt)((uchar*)"tryResume", &pNew->tryResume));
- CHKiRet((*pNew->modQueryEtryPt)((uchar*)"newScope", &pNew->mod.om.newScope));
- CHKiRet((*pNew->modQueryEtryPt)((uchar*)"restoreScope", &pNew->mod.om.restoreScope));
/* try load optional interfaces */
localRet = (*pNew->modQueryEtryPt)((uchar*)"doHUP", &pNew->doHUP);
if(localRet != RS_RET_OK && localRet != RS_RET_MODULE_ENTRY_POINT_NOT_FOUND)
@@ -624,8 +622,6 @@ static void modPrintList(void)
dbgprintf("\tparseSelectorAct: 0x%lx\n", (unsigned long) pMod->mod.om.parseSelectorAct);
dbgprintf("\ttryResume: 0x%lx\n", (unsigned long) pMod->tryResume);
dbgprintf("\tdoHUP: 0x%lx\n", (unsigned long) pMod->doHUP);
- dbgprintf("\tnewScope: 0x%lx\n", (unsigned long) pMod->mod.om.newScope);
- dbgprintf("\trestoreScope: 0x%lx\n", (unsigned long) pMod->mod.om.restoreScope);
dbgprintf("\tBeginTransaction: 0x%lx\n", (unsigned long)
((pMod->mod.om.beginTransaction == dummyBeginTransaction) ?
0 : pMod->mod.om.beginTransaction));