summaryrefslogtreecommitdiffstats
path: root/crypto/evp/bio_b64.c
diff options
context:
space:
mode:
authorRich Salz <rsalz@openssl.org>2015-02-02 16:53:54 -0500
committerRich Salz <rsalz@openssl.org>2015-02-02 16:53:54 -0500
commitfd22ab9edf497ad7d98897377ee798953845d022 (patch)
tree4ea05ab7ffc2582a52e2567df110746c758d733b /crypto/evp/bio_b64.c
parente2f80180271f3badc9dec6f3172009b57ba57842 (diff)
Dead code: if 0 removal from crypto/evp and an unused file.
Reviewed-by: Andy Polyakov <appro@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'crypto/evp/bio_b64.c')
-rw-r--r--crypto/evp/bio_b64.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/crypto/evp/bio_b64.c b/crypto/evp/bio_b64.c
index 538b520264..8cbbf0253b 100644
--- a/crypto/evp/bio_b64.c
+++ b/crypto/evp/bio_b64.c
@@ -298,11 +298,7 @@ static int b64_read(BIO *b, char *out, int outl)
if (BIO_get_flags(b) & BIO_FLAGS_BASE64_NO_NL) {
int z, jj;
-#if 0
- jj = (i >> 2) << 2;
-#else
jj = i & ~3; /* process per 4 */
-#endif
z = EVP_DecodeBlock((unsigned char *)ctx->buf,
(unsigned char *)ctx->tmp, jj);
if (jj > 2) {