summaryrefslogtreecommitdiffstats
path: root/action.h
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2010-04-23 11:43:00 +0100
committerRainer Gerhards <rgerhards@adiscon.com>2010-04-23 11:43:00 +0100
commitc4b0f6bcae4761cc7c41a2b07043a1bec00ad6e6 (patch)
tree48d9110b63e34c59c1648df3ff8a7049327bc487 /action.h
parent236c96ffb124074d6efe3382b4d1b77da9a2986a (diff)
parent3a12d05433153d5c7c84f85af6b5039fbcdd1d09 (diff)
downloadrsyslog-c4b0f6bcae4761cc7c41a2b07043a1bec00ad6e6.tar.gz
rsyslog-c4b0f6bcae4761cc7c41a2b07043a1bec00ad6e6.tar.xz
rsyslog-c4b0f6bcae4761cc7c41a2b07043a1bec00ad6e6.zip
Merge branch 'v4-devel' into master
Conflicts: runtime/rsyslog.h runtime/wtp.c
Diffstat (limited to 'action.h')
-rw-r--r--action.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/action.h b/action.h
index 94e1337f..d1805075 100644
--- a/action.h
+++ b/action.h
@@ -84,7 +84,8 @@ struct action_s {
SYNC_OBJ_TOOL; /* required for mutex support */
pthread_mutex_t mutActExec; /* mutex to guard actual execution of doAction for single-threaded modules */
uchar *pszName; /* action name (for documentation) */
- uchar **ppMsgs; /* pointer to action-calling parameters (kept in structure to save alloc() time!) */
+ //uchar **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 */
};
typedef struct action_s action_t;