diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-03-05 10:39:12 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-03-05 10:39:12 +0000 |
commit | 213e0b596205626214891fb46e1a780af7f26a8b (patch) | |
tree | 7baf6c7ce12353bd8f7632aa09cc138647f8093d /plugins/imfile/imfile.c | |
parent | 545346e697fe930b8b7b9bd0ede47890b26a4832 (diff) | |
download | rsyslog-213e0b596205626214891fb46e1a780af7f26a8b.tar.gz rsyslog-213e0b596205626214891fb46e1a780af7f26a8b.tar.xz rsyslog-213e0b596205626214891fb46e1a780af7f26a8b.zip |
bugfix: omfile used invalid obj-call (newly introduced bug)
Diffstat (limited to 'plugins/imfile/imfile.c')
-rw-r--r-- | plugins/imfile/imfile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/imfile/imfile.c b/plugins/imfile/imfile.c index 14d6cf3f..ef452bc5 100644 --- a/plugins/imfile/imfile.c +++ b/plugins/imfile/imfile.c @@ -129,7 +129,7 @@ openFile(fileInfo_t *pThis) CHKiRet(strmConstructFinalize(psSF)); /* read back in the object */ - CHKiRet(objDeserialize(&pThis->pStrm, "strm", psSF, NULL, pThis)); + CHKiRet(obj.Deserialize(&pThis->pStrm, (uchar*) "strm", psSF, NULL, pThis)); CHKiRet(strmSeekCurrOffs(pThis->pStrm)); |