summaryrefslogtreecommitdiffstats
path: root/plugins/imfile/imfile.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 /plugins/imfile/imfile.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 'plugins/imfile/imfile.c')
-rw-r--r--plugins/imfile/imfile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/imfile/imfile.c b/plugins/imfile/imfile.c
index 0dabc757..0f5f49dc 100644
--- a/plugins/imfile/imfile.c
+++ b/plugins/imfile/imfile.c
@@ -99,7 +99,7 @@ static rsRetVal enqLine(fileInfo_t *pInfo, cstr_t *cstrLine)
MsgSetFlowControlType(pMsg, eFLOWCTL_FULL_DELAY);
MsgSetInputName(pMsg, UCHAR_CONSTANT("imfile"), sizeof("imfile")-1);
MsgSetRawMsg(pMsg, (char*)rsCStrGetSzStr(cstrLine), cstrLen(cstrLine));
- MsgSetMSG(pMsg, (char*)rsCStrGetSzStr(cstrLine));
+ MsgSetMSGoffs(pMsg, 0); /* we do not have a header... */
MsgSetHOSTNAME(pMsg, glbl.GetLocalHostName());
MsgSetTAG(pMsg, pInfo->pszTag, pInfo->lenTag);
pMsg->iFacility = LOG_FAC(pInfo->iFacility);