diff options
author | Matt Caswell <matt@openssl.org> | 2018-11-12 15:23:07 +0100 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2018-11-14 12:28:01 +0100 |
commit | 65d2c16cbe0da8efed2f285f59930297326fb435 (patch) | |
tree | 9eace2e0557186ee94a44b9435db515983c600e8 /ssl/t1_lib.c | |
parent | Fix typo in util/perl/OpenSSL/Test.pm (diff) | |
download | openssl-65d2c16cbe0da8efed2f285f59930297326fb435.tar.xz openssl-65d2c16cbe0da8efed2f285f59930297326fb435.zip |
Fix no-ec and no-tls1_2
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/7620)
Diffstat (limited to 'ssl/t1_lib.c')
-rw-r--r-- | ssl/t1_lib.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ssl/t1_lib.c b/ssl/t1_lib.c index fe13a39c38..3415c6335f 100644 --- a/ssl/t1_lib.c +++ b/ssl/t1_lib.c @@ -949,6 +949,7 @@ size_t tls12_get_psigalgs(SSL *s, int sent, const uint16_t **psigs) } } +#ifndef OPENSSL_NO_EC /* * Called by servers only. Checks that we have a sig alg that supports the * specified EC curve. @@ -979,6 +980,7 @@ int tls_check_sigalg_curve(const SSL *s, int curve) return 0; } +#endif /* * Check signature algorithm is consistent with sent supported signature |