diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-04-03 09:31:55 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-04-03 09:31:55 +0000 |
commit | 5e279ea0f79250a07948ed6c24731f60e8221543 (patch) | |
tree | c7585345940febc8b4f4a1f154a292b0fd3b61a0 /conf.c | |
parent | 11461ad9c6de62556df79a35ff0c4902e2881f57 (diff) | |
download | rsyslog-5e279ea0f79250a07948ed6c24731f60e8221543.tar.gz rsyslog-5e279ea0f79250a07948ed6c24731f60e8221543.tar.bz2 rsyslog-5e279ea0f79250a07948ed6c24731f60e8221543.zip |
properties are now case-insensitive everywhere (script, filters, templates)
Diffstat (limited to 'conf.c')
-rw-r--r-- | conf.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -816,7 +816,7 @@ static rsRetVal cflineProcessPropFilter(uchar **pline, register selector_t *f) } /* read property */ - iRet = parsDelimCStr(pPars, &f->f_filterData.prop.pCSPropName, ',', 1, 1); + iRet = parsDelimCStr(pPars, &f->f_filterData.prop.pCSPropName, ',', 1, 1, 1); if(iRet != RS_RET_OK) { errmsg.LogError(NO_ERRCODE, "error %d parsing filter property - ignoring selector", iRet); rsParsDestruct(pPars); @@ -824,7 +824,7 @@ static rsRetVal cflineProcessPropFilter(uchar **pline, register selector_t *f) } /* read operation */ - iRet = parsDelimCStr(pPars, &pCSCompOp, ',', 1, 1); + iRet = parsDelimCStr(pPars, &pCSCompOp, ',', 1, 1, 1); if(iRet != RS_RET_OK) { errmsg.LogError(NO_ERRCODE, "error %d compare operation property - ignoring selector", iRet); rsParsDestruct(pPars); |