diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2009-06-18 16:51:40 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2009-06-18 16:51:40 +0200 |
commit | 2de4964affabc1ccf61bc72426a468fc871a54d0 (patch) | |
tree | 507645c42f6c22793d37ded28983d008d71bdb10 /plugins/imklog | |
parent | df9012f755a305ef48037f10fcc9413406894e66 (diff) | |
download | rsyslog-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 'plugins/imklog')
-rw-r--r-- | plugins/imklog/imklog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/imklog/imklog.c b/plugins/imklog/imklog.c index bf60ebe5..67fdc8a3 100644 --- a/plugins/imklog/imklog.c +++ b/plugins/imklog/imklog.c @@ -97,7 +97,7 @@ enqMsg(uchar *msg, uchar* pszTag, int iFacility, int iSeverity) MsgSetFlowControlType(pMsg, eFLOWCTL_LIGHT_DELAY); MsgSetInputName(pMsg, UCHAR_CONSTANT("imklog"), sizeof("imklog")-1); MsgSetRawMsgWOSize(pMsg, (char*)msg); - MsgSetMSG(pMsg, (char*)msg); + MsgSetMSGoffs(pMsg, 0); /* we do not have a header... */ MsgSetRcvFrom(pMsg, glbl.GetLocalHostName()); MsgSetRcvFromIP(pMsg, (uchar*)"127.0.0.1"); MsgSetHOSTNAME(pMsg, glbl.GetLocalHostName()); |