diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2007-07-24 07:35:13 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2007-07-24 07:35:13 +0000 |
commit | cb2fc5f2d664ce48b9e3e8fd6c06e3aa3a9d9f66 (patch) | |
tree | 3b750bb2624ae9a90c96e2bc15d9a687df0764b3 /omfile.c | |
parent | d9653ad08ffd2e8578aac00777cd610fce1f05c1 (diff) | |
download | rsyslog-cb2fc5f2d664ce48b9e3e8fd6c06e3aa3a9d9f66.tar.gz rsyslog-cb2fc5f2d664ce48b9e3e8fd6c06e3aa3a9d9f66.tar.xz rsyslog-cb2fc5f2d664ce48b9e3e8fd6c06e3aa3a9d9f66.zip |
fixed wrong credits - last patch was by mildew -- sorry for that ;)
Diffstat (limited to 'omfile.c')
-rw-r--r-- | omfile.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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; } |