diff options
author | Ulf Möller <ulf@openssl.org> | 1999-04-27 13:46:13 +0200 |
---|---|---|
committer | Ulf Möller <ulf@openssl.org> | 1999-04-27 13:46:13 +0200 |
commit | 61f217eec2c1947dec04d3211516fe4f851e4c81 (patch) | |
tree | 3b39c38fe978dde3d3ae586e0467a957e4e64951 /ssl/s23_srvr.c | |
parent | Message digest stuff. (diff) | |
download | openssl-61f217eec2c1947dec04d3211516fe4f851e4c81.tar.xz openssl-61f217eec2c1947dec04d3211516fe4f851e4c81.zip |
Undo.
Diffstat (limited to 'ssl/s23_srvr.c')
-rw-r--r-- | ssl/s23_srvr.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/ssl/s23_srvr.c b/ssl/s23_srvr.c index e74e019f1d..e4122f2d78 100644 --- a/ssl/s23_srvr.c +++ b/ssl/s23_srvr.c @@ -67,10 +67,8 @@ static SSL_METHOD *ssl23_get_server_method(int ver); int ssl23_get_client_hello(SSL *s); static SSL_METHOD *ssl23_get_server_method(int ver) { -#ifndef NO_RSA if (ver == SSL2_VERSION) return(SSLv2_server_method()); -#endif if (ver == SSL3_VERSION) return(SSLv3_server_method()); else if (ver == TLS1_VERSION) @@ -406,9 +404,6 @@ next_bit: if (type == 1) { -#ifdef NO_RSA - goto err; -#else /* we are talking sslv2 */ /* we need to clean up the SSLv3/TLSv1 setup and put in the * sslv2 stuff. */ @@ -447,7 +442,6 @@ next_bit: s->method=SSLv2_server_method(); s->handshake_func=s->method->ssl_accept; -#endif } if ((type == 2) || (type == 3)) |