diff options
author | Vincent Richard <[email protected]> | 2014-01-19 15:45:01 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2014-01-19 15:45:01 +0000 |
commit | 2e4bdab7047a5ccffd2368fd400f6bc0876c94cf (patch) | |
tree | 5191592b09d7c1f50ce4d7e26ea877f717a9eb33 | |
parent | In SSL socket, use timeout handler of underlying socket. Throw exception when... (diff) | |
download | vmime-2e4bdab7047a5ccffd2368fd400f6bc0876c94cf.tar.gz vmime-2e4bdab7047a5ccffd2368fd400f6bc0876c94cf.zip |
Fixed argument to handshake().
-rw-r--r-- | src/vmime/net/smtp/SMTPConnection.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vmime/net/smtp/SMTPConnection.cpp b/src/vmime/net/smtp/SMTPConnection.cpp index 574e5354..d7c04345 100644 --- a/src/vmime/net/smtp/SMTPConnection.cpp +++ b/src/vmime/net/smtp/SMTPConnection.cpp @@ -487,7 +487,7 @@ void SMTPConnection::startTLS() shared_ptr <tls::TLSSocket> tlsSocket = tlsSession->getSocket(m_socket); - tlsSocket->handshake(m_timeoutHandler); + tlsSocket->handshake(); m_socket = tlsSocket; |