summaryrefslogtreecommitdiffstats
path: root/stream.c
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2008-02-21 07:00:29 +0000
committerRainer Gerhards <rgerhards@adiscon.com>2008-02-21 07:00:29 +0000
commit013073f1a6f1ed2230feaba0865d0c14212577d0 (patch)
tree5dd528a004f730658f16a012c66726417ff750d3 /stream.c
parent44bb5af7ccef417a1d088527fc02af5f0e8d3dc5 (diff)
downloadrsyslog-013073f1a6f1ed2230feaba0865d0c14212577d0.tar.gz
rsyslog-013073f1a6f1ed2230feaba0865d0c14212577d0.tar.xz
rsyslog-013073f1a6f1ed2230feaba0865d0c14212577d0.zip
changed rsCStrObj name to cstr_t, which is more inline with the rest of
rsyslog (now) and also much easier to type
Diffstat (limited to 'stream.c')
-rw-r--r--stream.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/stream.c b/stream.c
index 95506685..c622f331 100644
--- a/stream.c
+++ b/stream.c
@@ -348,11 +348,11 @@ rsRetVal strmUnreadChar(strm_t *pThis, uchar c)
* rgerhards, 2008-01-07
*/
rsRetVal
-strmReadLine(strm_t *pThis, rsCStrObj **ppCStr)
+strmReadLine(strm_t *pThis, cstr_t **ppCStr)
{
DEFiRet;
uchar c;
- rsCStrObj *pCStr = NULL;
+ cstr_t *pCStr = NULL;
ASSERT(pThis != NULL);
ASSERT(ppCStr != NULL);