diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2010-06-10 10:40:04 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2010-06-10 10:40:04 +0200 |
commit | 13b5c6b145cfb2c9f4d5f9291115bf0fe7a7156c (patch) | |
tree | eeb9490e3bcb18283f00892b477d736cf1a6bd57 /action.h | |
parent | d630bc742f2f0b6a29c745bba743ecb8a03033c6 (diff) | |
download | rsyslog-13b5c6b145cfb2c9f4d5f9291115bf0fe7a7156c.tar.gz rsyslog-13b5c6b145cfb2c9f4d5f9291115bf0fe7a7156c.tar.bz2 rsyslog-13b5c6b145cfb2c9f4d5f9291115bf0fe7a7156c.zip |
fixed regression for omruleset use case
I did not revert to using the action ppMsg data element, as one of the
next steps is to remove it by an overall much better solution.
Diffstat (limited to 'action.h')
-rw-r--r-- | action.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -89,7 +89,7 @@ struct action_s { pthread_mutex_t mutActExec; /* mutex to guard actual execution of doAction for single-threaded modules */ uchar *pszName; /* action name (for documentation) */ int *pbShutdownImmediate;/* to facilitate shutdown, if var is 1, shut down immediately */ - void *ppMsgs; /* pointer to action-calling parameters (kept in structure to save alloc() time!) */ +// void *ppMsgs; /* pointer to action-calling parameters (kept in structure to save alloc() time!) */ size_t *lenMsgs; /* length of message in ppMsgs */ }; |