From cb2fc5f2d664ce48b9e3e8fd6c06e3aa3a9d9f66 Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Tue, 24 Jul 2007 07:35:13 +0000 Subject: fixed wrong credits - last patch was by mildew -- sorry for that ;) --- omfile.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'omfile.c') diff --git a/omfile.c b/omfile.c index 28085d34..e035545a 100644 --- a/omfile.c +++ b/omfile.c @@ -525,7 +525,7 @@ rsRetVal doActionFile(selector_t *f) * applies to this module and, if so, processed it. If not, it * is left untouched. The driver will then call another module */ -rsRetVal parseSelectorActFile(uchar **pp, selector_t *f) +static rsRetVal parseSelectorAct(uchar **pp, selector_t *f) { uchar *p; int syncfile; @@ -659,6 +659,8 @@ static rsRetVal queryEtryPt(uchar *name, rsRetVal (**pEtryPoint)()) *pEtryPoint = NULL; if(!strcmp((char*) name, "doAction")) { *pEtryPoint = doActionFile; + } else if(!strcmp((char*) name, "parseSelectorAct")) { + *pEtryPoint = parseSelectorAct; } else if(!strcmp((char*) name, "freeInstance")) { *pEtryPoint = freeInstanceFile; } -- cgit