diff options
author | Ben Laurie <ben@links.org> | 2015-12-13 16:07:54 +0100 |
---|---|---|
committer | Ben Laurie <ben@links.org> | 2015-12-13 17:14:35 +0100 |
commit | d25aeabca8341d6489cfea2c29b263aa581e3dc7 (patch) | |
tree | 3636ebb7ee64d2b5bcd1cd9efbd5f12f0d75c39d /ssl/t1_trce.c | |
parent | Remove no longer existant structure member and direct references to EVP_MD_CT... (diff) | |
download | openssl-d25aeabca8341d6489cfea2c29b263aa581e3dc7.tar.xz openssl-d25aeabca8341d6489cfea2c29b263aa581e3dc7.zip |
Don't use EC when no-ec.
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'ssl/t1_trce.c')
-rw-r--r-- | ssl/t1_trce.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ssl/t1_trce.c b/ssl/t1_trce.c index 6f5bed757d..80d0bf80b3 100644 --- a/ssl/t1_trce.c +++ b/ssl/t1_trce.c @@ -1068,6 +1068,7 @@ static int ssl_print_server_keyex(BIO *bio, int indent, SSL *ssl, return 0; break; +#ifndef OPENSSL_NO_EC case SSL_kECDHE: case SSL_kECDHEPSK: if (msglen < 1) @@ -1093,6 +1094,7 @@ static int ssl_print_server_keyex(BIO *bio, int indent, SSL *ssl, return 0; } break; +#endif case SSL_kPSK: case SSL_kRSAPSK: |