From 1b1229cd1e76ee43b8fb75466dd80a2c72b54136 Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Thu, 26 Jul 2007 09:31:50 +0000 Subject: - changed doAction() interface to include module data pointer - removed references to f_un from omusrmsg.c - changed module template for parseSelectorAct() [code reduction, consitency] --- ommysql.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'ommysql.c') diff --git a/ommysql.c b/ommysql.c index e0e1f6da..68657755 100644 --- a/ommysql.c +++ b/ommysql.c @@ -317,7 +317,6 @@ ENDdoAction BEGINparseSelectorAct - uchar *p; int iMySQLPropErr = 0; char szTemplateName[128]; CODESTARTparseSelectorAct @@ -327,7 +326,7 @@ CODESTARTparseSelectorAct * the code further changes. -- rgerhards, 2007-07-25 */ if(*p == '>') { - if((iRet = createInstance(&pModData)) != RS_RET_OK) + if((iRet = createInstance(&pData)) != RS_RET_OK) return iRet; } @@ -414,11 +413,6 @@ CODESTARTparseSelectorAct iRet = RS_RET_CONFLINE_UNPROCESSED; break; } - - if(iRet == RS_RET_OK) { - *ppModData = pModData; - *pp = p; - } ENDparseSelectorAct -- cgit