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 --- conf.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'conf.c') 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 */ -- cgit