diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2012-02-01 17:46:47 +0100 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2012-02-01 17:46:47 +0100 |
commit | 6b5321bcdba0b172cb9830c992721737468bc192 (patch) | |
tree | 4b1e2021c42c347299df914d8970719f6324f3cb /runtime/conf.c | |
parent | ce8e072564da6c3ef16755d8c3df8614895a717e (diff) | |
download | rsyslog-6b5321bcdba0b172cb9830c992721737468bc192.tar.gz rsyslog-6b5321bcdba0b172cb9830c992721737468bc192.tar.bz2 rsyslog-6b5321bcdba0b172cb9830c992721737468bc192.zip |
cleanup: remove code for no-longer needed legacy conf functionality
Diffstat (limited to 'runtime/conf.c')
-rw-r--r-- | runtime/conf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/conf.c b/runtime/conf.c index 7f6ad61a..eec04df8 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, 0)) != RS_RET_OK) { + if((iRet = parsSkipWhitespace(pPars)) != RS_RET_OK) { errmsg.LogError(0, iRet, "error %d skipping to action part - ignoring selector", iRet); rsParsDestruct(pPars); return(iRet); |