summaryrefslogtreecommitdiffstats
path: root/rsyslog.h
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2007-07-31 09:01:02 +0000
committerRainer Gerhards <rgerhards@adiscon.com>2007-07-31 09:01:02 +0000
commit82747c8d01a775e4a0921f2c839ea410cd48d168 (patch)
treec0c336a548cbd6b2ef2b36cbc50435c9ee869934 /rsyslog.h
parentc0b2b6b1bf3735bb0570523c9529bb1f93e96b86 (diff)
downloadrsyslog-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.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/rsyslog.h b/rsyslog.h
index 6a9f9500..60d003b2 100644
--- a/rsyslog.h
+++ b/rsyslog.h
@@ -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 */