From 2b51194f651add73f7caf53c074a18fa44059662 Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Wed, 1 Aug 2007 07:46:36 +0000 Subject: - some more code cleanup - enhanced cfsysline interface to disallow chaining of command handlers --- rsyslog.h | 1 + 1 file changed, 1 insertion(+) (limited to 'rsyslog.h') diff --git a/rsyslog.h b/rsyslog.h index b781383c..c4165bac 100644 --- a/rsyslog.h +++ b/rsyslog.h @@ -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 */ -- cgit