diff options
author | msvensson@neptunus.(none) <> | 2006-10-16 17:08:16 +0200 |
---|---|---|
committer | msvensson@neptunus.(none) <> | 2006-10-16 17:08:16 +0200 |
commit | 82b6ac52e586f0d41f012516be314c754196bf10 (patch) | |
tree | 0af74269cfddaf4c3c33e600557ae556bf4e3b1e /vio | |
parent | ffc9538bb48b81557833f96d64a9579a8df20d25 (diff) | |
parent | ecb518a9f006a7b3ebd56957ff4c34ba3c7675fa (diff) | |
download | mariadb-git-82b6ac52e586f0d41f012516be314c754196bf10.tar.gz |
Merge bk-internal:/home/bk/mysql-5.0-maint
into neptunus.(none):/home/msvensson/mysql/mysql-5.0-maint
Diffstat (limited to 'vio')
-rw-r--r-- | vio/viossl.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/vio/viossl.c b/vio/viossl.c index 090b837b972..9cc4523d32e 100644 --- a/vio/viossl.c +++ b/vio/viossl.c @@ -167,10 +167,9 @@ int sslaccept(struct st_VioSSLFd *ptr, Vio *vio, long timeout) SSL_clear(ssl); SSL_SESSION_set_timeout(SSL_get_session(ssl), timeout); SSL_set_fd(ssl, vio->sd); - SSL_set_accept_state(ssl); - if (SSL_do_handshake(ssl) < 1) + if (SSL_accept(ssl) < 1) { - DBUG_PRINT("error", ("SSL_do_handshake failure")); + DBUG_PRINT("error", ("SSL_accept failure")); report_errors(ssl); SSL_free(ssl); vio->ssl_arg= 0; @@ -242,10 +241,9 @@ int sslconnect(struct st_VioSSLFd *ptr, Vio *vio, long timeout) SSL_clear(ssl); SSL_SESSION_set_timeout(SSL_get_session(ssl), timeout); SSL_set_fd(ssl, vio->sd); - SSL_set_connect_state(ssl); - if (SSL_do_handshake(ssl) < 1) + if (SSL_connect(ssl) < 1) { - DBUG_PRINT("error", ("SSL_do_handshake failure")); + DBUG_PRINT("error", ("SSL_connect failure")); report_errors(ssl); SSL_free(ssl); vio->ssl_arg= 0; |