summaryrefslogtreecommitdiffstats
path: root/crypto/bio/bf_null.c
diff options
context:
space:
mode:
authorRoss Kinsey <RossIKinsey@gmail.com>2020-02-05 13:47:05 +1000
committerShane Lontis <shane.lontis@oracle.com>2020-02-05 13:47:05 +1000
commit8f2fe32df26244da7c76ecc691e29c0777648d21 (patch)
tree0501cc74448011ed4e248b1297a5fb68d1f39631 /crypto/bio/bf_null.c
parente558ae49213c1b7e58addc322675757ec93c2829 (diff)
Author: Ross Kinsey <RossIKinsey@gmail.com>
Date: Wed Jan 29 00:19:40 2020 -0500 Removed unnecessary switch statements from bio/bf_* callback_ctrl functions Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Paul Dale <paul.dale@oracle.com> Reviewed-by: Shane Lontis <shane.lontis@oracle.com> (Merged from https://github.com/openssl/openssl/pull/10967)
Diffstat (limited to 'crypto/bio/bf_null.c')
-rw-r--r--crypto/bio/bf_null.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/crypto/bio/bf_null.c b/crypto/bio/bf_null.c
index e548bdc90d..ba693af0a7 100644
--- a/crypto/bio/bf_null.c
+++ b/crypto/bio/bf_null.c
@@ -95,16 +95,9 @@ static long nullf_ctrl(BIO *b, int cmd, long num, void *ptr)
static long nullf_callback_ctrl(BIO *b, int cmd, BIO_info_cb *fp)
{
- long ret = 1;
-
if (b->next_bio == NULL)
return 0;
- switch (cmd) {
- default:
- ret = BIO_callback_ctrl(b->next_bio, cmd, fp);
- break;
- }
- return ret;
+ return BIO_callback_ctrl(b->next_bio, cmd, fp);
}
static int nullf_gets(BIO *bp, char *buf, int size)