summaryrefslogtreecommitdiffstats
path: root/action.h
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2010-04-22 14:38:12 +0100
committerRainer Gerhards <rgerhards@adiscon.com>2010-04-22 14:38:12 +0100
commit3a12d05433153d5c7c84f85af6b5039fbcdd1d09 (patch)
tree2a5922d7681f5d21700d152dc09909c2809e28c9 /action.h
parentf902c9ca4891dcd65fd1f4b8bba0d23c75451dcd (diff)
downloadrsyslog-3a12d05433153d5c7c84f85af6b5039fbcdd1d09.tar.gz
rsyslog-3a12d05433153d5c7c84f85af6b5039fbcdd1d09.tar.xz
rsyslog-3a12d05433153d5c7c84f85af6b5039fbcdd1d09.zip
solved alignment errors on Solaris Sparc
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 579a1215..c4ef94bb 100644
--- a/action.h
+++ b/action.h
@@ -74,7 +74,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;