summaryrefslogtreecommitdiffstats
path: root/rsyslog.h
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2008-02-11 14:00:37 +0000
committerRainer Gerhards <rgerhards@adiscon.com>2008-02-11 14:00:37 +0000
commitde41d0b857eeee7e5fbf630efdb3d1976207e438 (patch)
treea49bb5963e3d82fbf152f48d4b945ebdc667879a /rsyslog.h
parent7a29f77fc5376b39ad365a7893d5c016743c912e (diff)
downloadrsyslog-de41d0b857eeee7e5fbf630efdb3d1976207e438.tar.gz
rsyslog-de41d0b857eeee7e5fbf630efdb3d1976207e438.tar.xz
rsyslog-de41d0b857eeee7e5fbf630efdb3d1976207e438.zip
done some more work on omsnmp to bring it fully in line with recent rsyslog
developments
Diffstat (limited to 'rsyslog.h')
-rw-r--r--rsyslog.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/rsyslog.h b/rsyslog.h
index 6837c9d1..8749718c 100644
--- a/rsyslog.h
+++ b/rsyslog.h
@@ -57,8 +57,8 @@ enum rsRetVal_ /** return value. All methods return this if not specified oth
RS_RET_NOT_IMPLEMENTED = -7, /**< implementation is missing (probably internal error or lazyness ;)) */
RS_RET_OUT_OF_MEMORY = -6, /**< memory allocation failed */
RS_RET_PROVIDED_BUFFER_TOO_SMALL = -50,/**< the caller provided a buffer, but the called function sees the size of this buffer is too small - operation not carried out */
- RS_RET_TRUE = -1,
- RS_RET_FALSE = -2,
+ RS_RET_TRUE = -1, /**< to indicate a true state (can be used as TRUE, legacy) */
+ RS_RET_FALSE = -2, /**< to indicate a false state (can be used as FALSE, legacy) */
RS_RET_ERR = -3000, /**< generic failure */
RS_TRUNCAT_TOO_LARGE = -3001, /**< truncation operation where too many chars should be truncated */
RS_RET_FOUND_AT_STRING_END = -3002, /**< some value found, but at the last pos of string */