diff options
author | Matt Caswell <matt@openssl.org> | 2015-04-24 15:05:27 +0100 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2015-05-16 09:20:52 +0100 |
commit | d45ba43dab962bdc84158efc0cdddd5f5a08cf5e (patch) | |
tree | e79e390a6badf2ba24c3c973cbc62d7e65b14e4b /ssl/t1_srvr.c | |
parent | a27e81ee54112d8db40e409f45f1e9b88ccbf6b1 (diff) | |
download | openssl-new-d45ba43dab962bdc84158efc0cdddd5f5a08cf5e.tar.gz |
Updates following review comments
Miscellaneous updates following review comments on the version negotiation
rewrite patches.
Reviewed-by: Kurt Roeckx <kurt@openssl.org>
Diffstat (limited to 'ssl/t1_srvr.c')
-rw-r--r-- | ssl/t1_srvr.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ssl/t1_srvr.c b/ssl/t1_srvr.c index 451f384ecc..5206ce9028 100644 --- a/ssl/t1_srvr.c +++ b/ssl/t1_srvr.c @@ -75,6 +75,10 @@ static const SSL_METHOD *tls1_get_server_method(int ver) return TLSv1_1_server_method(); if (ver == TLS1_VERSION) return TLSv1_server_method(); +#ifndef OPENSSL_NO_SSL3 + if (ver == SSL3_VERSION) + return (SSLv3_server_method()); +#endif return NULL; } |