summaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2008-09-12 15:15:28 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2008-09-12 15:15:28 +0200
commit4e86efaf0e20626d8f740fcff131bfd38453de4d (patch)
treee2f8d9936c0e1d53ba2fc1196732184e6d15cce3 /runtime
parent63994d092c3567030b96d28dbdc3db5f0e22fba2 (diff)
downloadrsyslog-4e86efaf0e20626d8f740fcff131bfd38453de4d.tar.gz
rsyslog-4e86efaf0e20626d8f740fcff131bfd38453de4d.tar.xz
rsyslog-4e86efaf0e20626d8f740fcff131bfd38453de4d.zip
fixed duplicate error number
This probably happened during a branch merge and was not detected. Fixed now, should not haved any harm.
Diffstat (limited to 'runtime')
-rw-r--r--runtime/rsyslog.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/rsyslog.h b/runtime/rsyslog.h
index 8843df85..7927af3a 100644
--- a/runtime/rsyslog.h
+++ b/runtime/rsyslog.h
@@ -219,7 +219,6 @@ enum rsRetVal_ /** return value. All methods return this if not specified oth
RS_RET_MAIL_NO_FROM = -2072, /**< sender for mail destination is missing */
RS_RET_INVALID_PRI = -2073, /**< PRI value is invalid */
RS_RET_MALICIOUS_HNAME = -2074, /**< remote peer is trying malicious things with its hostname */
- RS_RET_ACCEPT_ERR = -2074, /**< error during accept() system call */
RS_RET_INVALID_HNAME = -2075, /**< remote peer's hostname invalid or unobtainable */
RS_RET_INVALID_PORT = -2076, /**< invalid port value */
RS_RET_COULD_NOT_BIND = -2077, /**< could not bind socket, defunct */
@@ -248,6 +247,7 @@ enum rsRetVal_ /** return value. All methods return this if not specified oth
RS_RET_GSS_ERR = -2101, /**< generic error occured in GSSAPI subsystem */
RS_RET_CERTLESS = -2102, /**< state: we run without machine cert (this may be OK) */
RS_RET_QUEUE_FULL = -2103, /**< queue is full, operation could not be completed */
+ RS_RET_ACCEPT_ERR = -2104, /**< error during accept() system call */
/* RainerScript error messages (range 1000.. 1999) */
RS_RET_SYSVAR_NOT_FOUND = 1001, /**< system variable could not be found (maybe misspelled) */