summaryrefslogtreecommitdiffstats
path: root/action.h
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2012-09-19 18:57:02 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2012-09-19 18:57:02 +0200
commitb40c83090e7146a0709657b3ad15f806c51f5f83 (patch)
tree59f5e7cddb651cc42f5badec99b7283575d09ae3 /action.h
parent7ebec498f175cd6233a7161c43f1e6acd3a7cf57 (diff)
downloadrsyslog-b40c83090e7146a0709657b3ad15f806c51f5f83.tar.gz
rsyslog-b40c83090e7146a0709657b3ad15f806c51f5f83.tar.bz2
rsyslog-b40c83090e7146a0709657b3ad15f806c51f5f83.zip
bugfix: potential abort, if action queue could not be properly started
This most importantly could happen due to configuration errors.
Diffstat (limited to 'action.h')
-rw-r--r--action.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/action.h b/action.h
index 5f142b00..b4edcbbd 100644
--- a/action.h
+++ b/action.h
@@ -36,7 +36,7 @@ extern int glbliActionResumeRetryCount;
typedef enum {
- ACT_STATE_DIED = 0, /* action permanently failed and now disabled - MUST BE ZEO! */
+ ACT_STATE_DIED = 0, /* action permanently failed and now disabled - MUST BE ZERO! */
ACT_STATE_RDY = 1, /* action ready, waiting for new transaction */
ACT_STATE_ITX = 2, /* transaction active, waiting for new data or commit */
ACT_STATE_COMM = 3, /* transaction finished (a transient state) */