diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2012-09-19 18:57:02 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2012-09-19 18:57:02 +0200 |
commit | b40c83090e7146a0709657b3ad15f806c51f5f83 (patch) | |
tree | 59f5e7cddb651cc42f5badec99b7283575d09ae3 /action.h | |
parent | 7ebec498f175cd6233a7161c43f1e6acd3a7cf57 (diff) | |
download | rsyslog-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.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) */ |