summaryrefslogtreecommitdiffstats
path: root/rsyslog.h
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2008-02-27 15:01:53 +0000
committerRainer Gerhards <rgerhards@adiscon.com>2008-02-27 15:01:53 +0000
commit5dd9a6792b4266006cb8b283e6e5996bbd5026a7 (patch)
tree0e52a5bcffc9c49467755381ad84a6c2c6627ade /rsyslog.h
parent58bb094fbaf6fac3ccd4db802db1cfcb37f3d01c (diff)
downloadrsyslog-5dd9a6792b4266006cb8b283e6e5996bbd5026a7.tar.gz
rsyslog-5dd9a6792b4266006cb8b283e6e5996bbd5026a7.tar.xz
rsyslog-5dd9a6792b4266006cb8b283e6e5996bbd5026a7.zip
bugfix: object property deserializer did not handle negative numbers
Diffstat (limited to 'rsyslog.h')
-rw-r--r--rsyslog.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/rsyslog.h b/rsyslog.h
index 8b4aa354..c44e73cc 100644
--- a/rsyslog.h
+++ b/rsyslog.h
@@ -133,7 +133,8 @@ enum rsRetVal_ /** return value. All methods return this if not specified oth
RS_RET_STACK_EMPTY = -2056, /**< a pop was requested on a stack, but the stack was already empty */
RS_RET_INVALID_VMOP = -2057, /**< invalid virtual machine instruction */
RS_RET_INVALID_VAR = -2058, /**< a var_t or its content is unsuitable, eg. VARTYPE_NONE */
- RS_RET_NOT_A_NUMBER = -2059, /**< e.g. conversion impossible because the string is not a number */
+ RS_RET_INVALID_NUMBER = -2059, /**< number invalid during parsing */
+ RS_RET_NOT_A_NUMBER = -2060, /**< e.g. conversion impossible because the string is not a number */
/* RainerScript error messages (range 1000.. 1999) */
RS_RET_SYSVAR_NOT_FOUND = 1001, /**< system variable could not be found (maybe misspelled) */