summaryrefslogtreecommitdiffstats
path: root/action.c
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2009-06-18 16:51:40 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2009-06-18 16:51:40 +0200
commit2de4964affabc1ccf61bc72426a468fc871a54d0 (patch)
tree507645c42f6c22793d37ded28983d008d71bdb10 /action.c
parentdf9012f755a305ef48037f10fcc9413406894e66 (diff)
downloadrsyslog-2de4964affabc1ccf61bc72426a468fc871a54d0.tar.gz
rsyslog-2de4964affabc1ccf61bc72426a468fc871a54d0.tar.xz
rsyslog-2de4964affabc1ccf61bc72426a468fc871a54d0.zip
optimized handling of MSG part in msg object
WARNING: currently, message repeation processing is disabled, must be reenabled (but prefer to do some other tests first)
Diffstat (limited to 'action.c')
-rw-r--r--action.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/action.c b/action.c
index 08cdd6fd..4ab5b81f 100644
--- a/action.c
+++ b/action.c
@@ -674,7 +674,8 @@ actionWriteToAction(action_t *pAction)
*/
datetime.getCurrTime(&(pMsg->tRcvdAt), &(pMsg->ttGenTime));
memcpy(&pMsg->tTIMESTAMP, &pMsg->tRcvdAt, sizeof(struct syslogTime));
- MsgSetMSG(pMsg, (char*)szRepMsg);
+#pragma warn "need fix msg repeationg handling"
+ //MsgSetMSG(pMsg, (char*)szRepMsg);
MsgSetRawMsgWOSize(pMsg, (char*)szRepMsg);
pMsgSave = pAction->f_pMsg; /* save message pointer for later restoration */