summaryrefslogtreecommitdiffstats
path: root/runtime/conf.c
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2012-02-01 17:35:03 +0100
committerRainer Gerhards <rgerhards@adiscon.com>2012-02-01 17:35:03 +0100
commitce8e072564da6c3ef16755d8c3df8614895a717e (patch)
tree3eda2559282bad07cb68ce6ebc4445ac40af820e /runtime/conf.c
parenteda1278ece0ea1e5615a9f4d74f029b85eb35fb9 (diff)
downloadrsyslog-ce8e072564da6c3ef16755d8c3df8614895a717e.tar.gz
rsyslog-ce8e072564da6c3ef16755d8c3df8614895a717e.tar.xz
rsyslog-ce8e072564da6c3ef16755d8c3df8614895a717e.zip
conf file: bufgix: legacy parsing of some filters did not work correctly
Diffstat (limited to 'runtime/conf.c')
-rw-r--r--runtime/conf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/conf.c b/runtime/conf.c
index 37774902..7f6ad61a 100644
--- a/runtime/conf.c
+++ b/runtime/conf.c
@@ -596,7 +596,7 @@ rsRetVal cflineProcessPropFilter(uchar **pline, register rule_t *f)
}
/* skip to action part */
- if((iRet = parsSkipWhitespace(pPars, 1)) != RS_RET_OK) {
+ if((iRet = parsSkipWhitespace(pPars, 0)) != RS_RET_OK) {
errmsg.LogError(0, iRet, "error %d skipping to action part - ignoring selector", iRet);
rsParsDestruct(pPars);
return(iRet);