diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2012-08-25 12:27:06 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2012-08-25 12:27:06 +0200 |
commit | 27a0078958d808a323c945b58b77ee96ee690444 (patch) | |
tree | 2bcd479d0e5b42dd92c715e917722d6519c922b0 /runtime/modules.c | |
parent | 1eac94e11dab1e7caead5e31a57d2cae31b5ad62 (diff) | |
parent | de71589ca3145dfbe8e34790bb49e3d86d3d3bce (diff) | |
download | rsyslog-27a0078958d808a323c945b58b77ee96ee690444.tar.gz rsyslog-27a0078958d808a323c945b58b77ee96ee690444.tar.bz2 rsyslog-27a0078958d808a323c945b58b77ee96ee690444.zip |
Merge branch 'master' into master-newtemplate
Diffstat (limited to 'runtime/modules.c')
-rw-r--r-- | runtime/modules.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/runtime/modules.c b/runtime/modules.c index bc8580f1..d3c51e90 100644 --- a/runtime/modules.c +++ b/runtime/modules.c @@ -657,11 +657,11 @@ doModInit(rsRetVal (*modInit)(int, int*, rsRetVal(**)(), rsRetVal(*)(), modInfo_ /* check some features */ localRet = pNew->isCompatibleWithFeature(sFEATUREAutomaticSanitazion); if(localRet == RS_RET_OK){ - CHKiRet(parser.SetDoSanitazion(pParser, TRUE)); + CHKiRet(parser.SetDoSanitazion(pParser, RSTRUE)); } localRet = pNew->isCompatibleWithFeature(sFEATUREAutomaticPRIParsing); if(localRet == RS_RET_OK){ - CHKiRet(parser.SetDoPRIParsing(pParser, TRUE)); + CHKiRet(parser.SetDoPRIParsing(pParser, RSTRUE)); } CHKiRet(parser.SetName(pParser, pName)); @@ -990,9 +990,9 @@ Load(uchar *pModName, sbool bConfLoad, struct nvlst *lst) if(iModNameLen > 3 && !strcmp((char *) pModName + iModNameLen - 3, ".so")) { iModNameLen -= 3; - bHasExtension = TRUE; + bHasExtension = RSTRUE; } else - bHasExtension = FALSE; + bHasExtension = RSFALSE; CHKiRet(findModule(pModName, iModNameLen, &pModInfo)); if(pModInfo != NULL) { |