summaryrefslogtreecommitdiffstats
path: root/conf.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 /conf.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 'conf.c')
-rw-r--r--conf.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/conf.c b/conf.c
index f1a996c7..4fcf962e 100644
--- a/conf.c
+++ b/conf.c
@@ -66,8 +66,8 @@ uchar *pModDir = NULL; /* read-only after startup */
* of course, during a reload). rgerhards 2005-10-18
*/
EHostnameCmpMode eDfltHostnameCmpMode;
-rsCStrObj *pDfltHostnameCmp;
-rsCStrObj *pDfltProgNameCmp;
+cstr_t *pDfltHostnameCmp;
+cstr_t *pDfltProgNameCmp;
/* process a directory and include all of its files into
@@ -476,7 +476,7 @@ rsRetVal cflineParseTemplateName(uchar** pp, omodStringRequest_t *pOMSR, int iEn
uchar *p;
uchar *tplName;
DEFiRet;
- rsCStrObj *pStrB;
+ cstr_t *pStrB;
ASSERT(pp != NULL);
ASSERT(*pp != NULL);
@@ -791,7 +791,7 @@ finalize_it:
static rsRetVal cflineProcessPropFilter(uchar **pline, register selector_t *f)
{
rsParsObj *pPars;
- rsCStrObj *pCSCompOp;
+ cstr_t *pCSCompOp;
rsRetVal iRet;
int iOffset; /* for compare operations */