From 013073f1a6f1ed2230feaba0865d0c14212577d0 Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Thu, 21 Feb 2008 07:00:29 +0000 Subject: changed rsCStrObj name to cstr_t, which is more inline with the rest of rsyslog (now) and also much easier to type --- plugins/imfile/imfile.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/imfile') diff --git a/plugins/imfile/imfile.c b/plugins/imfile/imfile.c index 47df37f3..b3b2f060 100644 --- a/plugins/imfile/imfile.c +++ b/plugins/imfile/imfile.c @@ -79,7 +79,7 @@ typedef struct _instanceData { /* enqueue the read file line as a message */ -static rsRetVal enqLine(fileInfo_t *pInfo, rsCStrObj *cstrLine) +static rsRetVal enqLine(fileInfo_t *pInfo, cstr_t *cstrLine) { DEFiRet; msg_t *pMsg; @@ -165,7 +165,7 @@ finalize_it: static rsRetVal pollFile(fileInfo_t *pThis, int *pbHadFileData) { DEFiRet; - rsCStrObj *pCStr; + cstr_t *pCStr; ASSERT(pbHadFileData != NULL); -- cgit