diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-01-29 14:18:12 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-01-29 14:18:12 +0000 |
commit | 9843274dc96ba4b3af079367f9704e232bde2b2d (patch) | |
tree | d3e6ca6b09faa53de31e484dcfb58f4938611d91 /action.h | |
parent | bf4ba7de44208dd4ccea602a30c788dcd480a12d (diff) | |
download | rsyslog-9843274dc96ba4b3af079367f9704e232bde2b2d.tar.gz rsyslog-9843274dc96ba4b3af079367f9704e232bde2b2d.tar.xz rsyslog-9843274dc96ba4b3af079367f9704e232bde2b2d.zip |
bugfixing newly added action code
Diffstat (limited to 'action.h')
-rw-r--r-- | action.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -88,6 +88,7 @@ rsRetVal actionWriteToAction(action_t *pAction); inline int actionIsSuspended(action_t *pThis) { int i; + ASSERT(pThis != NULL); i = pThis->bSuspended == 1; dbgprintf("in IsSuspend(), returns %d\n", i); return i; |