summaryrefslogtreecommitdiffstats
path: root/runtime/stream.c
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2012-08-22 15:29:02 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2012-08-22 15:29:02 +0200
commit9faf2240c4a8f09f3f6c2c9bbd47e48520524e03 (patch)
tree3ce400e560526e78039a31465d9a92eb2314464c /runtime/stream.c
parent8985d50fea62e1794c8e1a12d09733007869a6b4 (diff)
downloadrsyslog-9faf2240c4a8f09f3f6c2c9bbd47e48520524e03.tar.gz
rsyslog-9faf2240c4a8f09f3f6c2c9bbd47e48520524e03.tar.xz
rsyslog-9faf2240c4a8f09f3f6c2c9bbd47e48520524e03.zip
changed TRUE/FALSE to RSTRUE/RSFALSE
This is done to prevent name claches with libraries.
Diffstat (limited to 'runtime/stream.c')
-rw-r--r--runtime/stream.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/stream.c b/runtime/stream.c
index 6b88d3f4..9645a3fe 100644
--- a/runtime/stream.c
+++ b/runtime/stream.c
@@ -1172,7 +1172,7 @@ doZipWrite(strm_t *pThis, uchar *pBuf, size_t lenBuf)
{
z_stream zstrm;
int zRet; /* zlib return state */
- sbool bzInitDone = FALSE;
+ sbool bzInitDone = RSFALSE;
DEFiRet;
assert(pThis != NULL);
assert(pBuf != NULL);
@@ -1188,7 +1188,7 @@ doZipWrite(strm_t *pThis, uchar *pBuf, size_t lenBuf)
DBGPRINTF("error %d returned from zlib/deflateInit2()\n", zRet);
ABORT_FINALIZE(RS_RET_ZLIB_ERR);
}
- bzInitDone = TRUE;
+ bzInitDone = RSTRUE;
/* now doing the compression */
zstrm.next_in = (Bytef*) pBuf; /* as of zlib doc, this must be set BEFORE DeflateInit2 */