diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2007-07-31 09:01:02 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2007-07-31 09:01:02 +0000 |
commit | 82747c8d01a775e4a0921f2c839ea410cd48d168 (patch) | |
tree | c0c336a548cbd6b2ef2b36cbc50435c9ee869934 /rsyslog.h | |
parent | c0b2b6b1bf3735bb0570523c9529bb1f93e96b86 (diff) | |
download | rsyslog-82747c8d01a775e4a0921f2c839ea410cd48d168.tar.gz rsyslog-82747c8d01a775e4a0921f2c839ea410cd48d168.tar.xz rsyslog-82747c8d01a775e4a0921f2c839ea410cd48d168.zip |
moved code to open config file into separate function processConfFile()
Diffstat (limited to 'rsyslog.h')
-rw-r--r-- | rsyslog.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -63,6 +63,7 @@ enum rsRetVal_ /** return value. All methods return this if not specified oth RS_RET_INVALID_INT = -2010,/**< invalid integer */ RS_RET_INVALID_CMD = -2011,/**< invalid command */ 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_OK = 0 /**< operation successful */ }; typedef enum rsRetVal_ rsRetVal; /**< friendly type for global return value */ |