diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2013-04-24 11:09:37 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2013-04-24 11:09:37 +0200 |
commit | d0cefac7a766d0f02ca76fcaeb6cfbace695b925 (patch) | |
tree | 70f182c97f2fac3cb3b02e56c409c916c4adb8b3 /runtime/stream.c | |
parent | 2f68d5f0d8a5c3ffef6bf52f27abc726ad27d764 (diff) | |
download | rsyslog-d0cefac7a766d0f02ca76fcaeb6cfbace695b925.tar.gz rsyslog-d0cefac7a766d0f02ca76fcaeb6cfbace695b925.tar.bz2 rsyslog-d0cefac7a766d0f02ca76fcaeb6cfbace695b925.zip |
cleanup
Diffstat (limited to 'runtime/stream.c')
-rw-r--r-- | runtime/stream.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/runtime/stream.c b/runtime/stream.c index b0df8418..b781324a 100644 --- a/runtime/stream.c +++ b/runtime/stream.c @@ -255,7 +255,6 @@ doPhysOpen(strm_t *pThis) pThis->bIsTTY = 0; } -dbgprintf("DDDD: cryprov %p\n", pThis->cryprov); if(pThis->cryprov != NULL) { CHKiRet(pThis->cryprov->OnFileOpen(pThis->cryprovData, pThis->pszCurrFName, &pThis->cryprovFileData)); @@ -1218,11 +1217,9 @@ strmPhysWrite(strm_t *pThis, uchar *pBuf, size_t lenBuf) CHKiRet(strmOpenFile(pThis)); /* here we place our crypto interface */ -dbgprintf("DDDD: doing crypto, len %d\n", lenBuf); if(pThis->cryprov != NULL) { pThis->cryprov->Encrypt(pThis->cryprovFileData, pBuf, &lenBuf); } -dbgprintf("DDDD: done crypto, len %d\n", lenBuf); /* end crypto */ iWritten = lenBuf; |