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 /parse.h | |
parent | 11461ad9c6de62556df79a35ff0c4902e2881f57 (diff) | |
download | rsyslog-5e279ea0f79250a07948ed6c24731f60e8221543.tar.gz rsyslog-5e279ea0f79250a07948ed6c24731f60e8221543.tar.xz rsyslog-5e279ea0f79250a07948ed6c24731f60e8221543.zip |
properties are now case-insensitive everywhere (script, filters, templates)
Diffstat (limited to 'parse.h')
-rw-r--r-- | parse.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -91,7 +91,7 @@ rsRetVal parsSkipWhitespace(rsParsObj *pThis); * Output: * ppCStr Pointer to the parsed string */ -rsRetVal parsDelimCStr(rsParsObj *pThis, cstr_t **ppCStr, char cDelim, int bTrimLeading, int bTrimTrailing); +rsRetVal parsDelimCStr(rsParsObj *pThis, cstr_t **ppCStr, char cDelim, int bTrimLeading, int bTrimTrailing, int bConvLower); rsRetVal parsSkipAfterChar(rsParsObj *pThis, char c); rsRetVal parsQuotedCStr(rsParsObj *pThis, cstr_t **ppCStr); |