Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--crypto/bio/buffer.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/crypto/bio/buffer.c b/crypto/bio/buffer.c
index 15574510..ebc3c1d0 100644
--- a/crypto/bio/buffer.c
+++ b/crypto/bio/buffer.c
@@ -417,11 +417,8 @@ static long buffer_callback_ctrl(BIO *b, int cmd, bio_info_cb fp) {
return 0;
}
- switch (cmd) {
- default:
- ret = BIO_callback_ctrl(b->next_bio, cmd, fp);
- break;
- }
+ ret = BIO_callback_ctrl(b->next_bio, cmd, fp);
+
return ret;
}