diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-02-21 07:00:29 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-02-21 07:00:29 +0000 |
commit | 013073f1a6f1ed2230feaba0865d0c14212577d0 (patch) | |
tree | 5dd528a004f730658f16a012c66726417ff750d3 /ctok_token.c | |
parent | 44bb5af7ccef417a1d088527fc02af5f0e8d3dc5 (diff) | |
download | rsyslog-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 'ctok_token.c')
-rw-r--r-- | ctok_token.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ctok_token.c b/ctok_token.c index a0f6b18d..11667323 100644 --- a/ctok_token.c +++ b/ctok_token.c @@ -61,13 +61,13 @@ CODESTARTobjDestruct(ctok_token) ENDobjDestruct(ctok_token) -/* get the rsCStrObj from the token, but do not destruct it. This is meant to +/* get the cstr_t from the token, but do not destruct it. This is meant to * be used by a caller who passes on the string to some other function. The * caller is responsible for destructing it. * rgerhards, 2008-02-20 */ rsRetVal -ctok_tokenUnlinkCStr(ctok_token_t *pThis, rsCStrObj **ppCStr) +ctok_tokenUnlinkCStr(ctok_token_t *pThis, cstr_t **ppCStr) { DEFiRet; |