logo

oasis

Own branch of Oasis Linux (upstream: <https://git.sr.ht/~mcf/oasis/>) git clone https://anongit.hacktivis.me/git/oasis.git

0001-Add-missing-return-in-client-single-EC-choose-functi.patch (726B)


  1. From a5c3ea02385205858128e414873a0150cd8bceda Mon Sep 17 00:00:00 2001
  2. From: Michael Forney <mforney@mforney.org>
  3. Date: Fri, 31 Jan 2020 15:11:32 -0800
  4. Subject: [PATCH] Add missing return in client single EC choose function
  5. Otherwise, static ECDH is never selected.
  6. ---
  7. src/ssl/ssl_ccert_single_ec.c | 1 +
  8. 1 file changed, 1 insertion(+)
  9. diff --git a/src/ssl/ssl_ccert_single_ec.c b/src/ssl/ssl_ccert_single_ec.c
  10. index 93ebcde..2e1e54f 100644
  11. --- a/src/ssl/ssl_ccert_single_ec.c
  12. +++ b/src/ssl/ssl_ccert_single_ec.c
  13. @@ -69,6 +69,7 @@ cc_choose(const br_ssl_client_certificate_class **pctx,
  14. choices->hash_id = -1;
  15. choices->chain = zc->chain;
  16. choices->chain_len = zc->chain_len;
  17. + return;
  18. }
  19. }
  20. --
  21. 2.25.0