diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2007-08-01 07:46:36 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2007-08-01 07:46:36 +0000 |
commit | 2b51194f651add73f7caf53c074a18fa44059662 (patch) | |
tree | 4160d611d1d37a0fa357bc6525000d2c13e42917 /rsyslog.h | |
parent | 2a712d230a2589cabdd967956ede8c4f6fb59204 (diff) | |
download | rsyslog-2b51194f651add73f7caf53c074a18fa44059662.tar.gz rsyslog-2b51194f651add73f7caf53c074a18fa44059662.tar.xz rsyslog-2b51194f651add73f7caf53c074a18fa44059662.zip |
- some more code cleanup
- enhanced cfsysline interface to disallow chaining of command handlers
Diffstat (limited to 'rsyslog.h')
-rw-r--r-- | rsyslog.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -66,6 +66,7 @@ enum rsRetVal_ /** return value. All methods return this if not specified oth RS_RET_VAL_OUT_OF_RANGE = -2012, /**< value out of range */ RS_RET_FOPEN_FAILURE = -2013, /**< failure during fopen, for example file not found - see errno */ RS_RET_END_OF_LINKEDLIST = -2014, /**< end of linked list, not an error, but a status */ + RS_RET_CHAIN_NOT_PERMITTED = -2015, /**< chaining (e.g. of config command handlers) not permitted */ RS_RET_OK = 0 /**< operation successful */ }; typedef enum rsRetVal_ rsRetVal; /**< friendly type for global return value */ |