aboutsummaryrefslogtreecommitdiff
path: root/ssl/s23_clnt.c
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>1999-04-27 11:46:13 +0000
committerUlf Möller <ulf@openssl.org>1999-04-27 11:46:13 +0000
commit61f217eec2c1947dec04d3211516fe4f851e4c81 (patch)
tree3b39c38fe978dde3d3ae586e0467a957e4e64951 /ssl/s23_clnt.c
parentd02f751ce1d13183a0c0e5528ec89f76587ed989 (diff)
downloadopenssl-61f217eec2c1947dec04d3211516fe4f851e4c81.zip
openssl-61f217eec2c1947dec04d3211516fe4f851e4c81.tar.gz
openssl-61f217eec2c1947dec04d3211516fe4f851e4c81.tar.bz2
Undo.
Diffstat (limited to 'ssl/s23_clnt.c')
-rw-r--r--ssl/s23_clnt.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/ssl/s23_clnt.c b/ssl/s23_clnt.c
index 36f609b..386ebe3 100644
--- a/ssl/s23_clnt.c
+++ b/ssl/s23_clnt.c
@@ -68,10 +68,8 @@ static int ssl23_client_hello(SSL *s);
static int ssl23_get_server_hello(SSL *s);
static SSL_METHOD *ssl23_get_client_method(int ver)
{
-#ifndef NO_RSA
if (ver == SSL2_VERSION)
return(SSLv2_client_method());
-#endif
if (ver == SSL3_VERSION)
return(SSLv3_client_method());
else if (ver == TLS1_VERSION)
@@ -322,9 +320,6 @@ static int ssl23_get_server_hello(SSL *s)
if ((p[0] & 0x80) && (p[2] == SSL2_MT_SERVER_HELLO) &&
(p[5] == 0x00) && (p[6] == 0x02))
{
-#ifdef NO_RSA
- goto err;
-#else
/* we are talking sslv2 */
/* we need to clean up the SSLv3 setup and put in the
* sslv2 stuff. */
@@ -380,7 +375,6 @@ static int ssl23_get_server_hello(SSL *s)
s->method=SSLv2_client_method();
s->handshake_func=s->method->ssl_connect;
-#endif
}
else if ((p[0] == SSL3_RT_HANDSHAKE) &&
(p[1] == SSL3_VERSION_MAJOR) &&