aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/bio/bf_buff.c
diff options
context:
space:
mode:
authorRich Salz <rsalz@openssl.org>2015-01-29 21:38:57 -0500
committerRich Salz <rsalz@openssl.org>2015-01-29 21:38:57 -0500
commit4d428cd2504c7ef03bc9672ecf2862eaedb3d87e (patch)
tree2d640a824dd024e3a15db293eb8eb29e06fa3bdd /crypto/bio/bf_buff.c
parent33fc38ff8e2cb8723f7b116de3f8923c4f4eb9d5 (diff)
downloadopenssl-4d428cd2504c7ef03bc9672ecf2862eaedb3d87e.tar.gz
Dead code removal: #if 0 bio, comp, rand
The start of removing dead code. A remaining #if 0 in bss_conn.c needs more thought. Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'crypto/bio/bf_buff.c')
-rw-r--r--crypto/bio/bf_buff.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/crypto/bio/bf_buff.c b/crypto/bio/bf_buff.c
index 478fa16a07..0e998d656a 100644
--- a/crypto/bio/bf_buff.c
+++ b/crypto/bio/bf_buff.c
@@ -414,10 +414,6 @@ static long buffer_ctrl(BIO *b, int cmd, long num, void *ptr)
if (ctx->obuf_len > 0) {
r = BIO_write(b->next_bio,
&(ctx->obuf[ctx->obuf_off]), ctx->obuf_len);
-#if 0
- fprintf(stderr, "FLUSH [%3d] %3d -> %3d\n", ctx->obuf_off,
- ctx->obuf_len, r);
-#endif
BIO_copy_next_retry(b);
if (r <= 0)
return ((long)r);