diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2012-11-30 09:59:02 +0100 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2012-11-30 09:59:02 +0100 |
commit | 7df68798be96d38fcb17143daa2c3e2b093a8ba5 (patch) | |
tree | f57ed7d3a994d2f62fe8cf26b2cbc19bc9a0bd0f /runtime/rsyslog.h | |
parent | 1b75cd3b4567cbd0605cc2a6d397c5dc3a6230f5 (diff) | |
download | rsyslog-7df68798be96d38fcb17143daa2c3e2b093a8ba5.tar.gz rsyslog-7df68798be96d38fcb17143daa2c3e2b093a8ba5.tar.bz2 rsyslog-7df68798be96d38fcb17143daa2c3e2b093a8ba5.zip |
bugfix[minor]: invalid error code when mmnormalize could not access rulebase
Diffstat (limited to 'runtime/rsyslog.h')
-rw-r--r-- | runtime/rsyslog.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/rsyslog.h b/runtime/rsyslog.h index c00b5d95..35d8850d 100644 --- a/runtime/rsyslog.h +++ b/runtime/rsyslog.h @@ -397,6 +397,7 @@ enum rsRetVal_ /** return value. All methods return this if not specified oth RS_RET_DEPRECATED = -2307,/**< deprecated functionality is used */ RS_RET_DS_PROP_SEQ_ERR = -2308,/**< property sequence error deserializing object */ RS_RET_TPL_INVLD_PROP = -2309,/**< property name error in template (unknown name) */ + RS_RET_NO_RULEBASE = -2310,/**< mmnormalize: rulebase can not be found or otherwise invalid */ /* RainerScript error messages (range 1000.. 1999) */ RS_RET_SYSVAR_NOT_FOUND = 1001, /**< system variable could not be found (maybe misspelled) */ |