diff options
| author | Vincent Richard <[email protected]> | 2012-11-03 08:27:12 +0000 |
|---|---|---|
| committer | Vincent Richard <[email protected]> | 2012-11-03 08:27:12 +0000 |
| commit | bc63892291ecf245dd210e236ab14f12e31baef8 (patch) | |
| tree | 031bc486b0cafc527f516e6890105521bc7f2afc /src/net/pop3/POP3Store.cpp | |
| parent | Migrated build system to CMake. Conditional file compilation. Automatic selec... (diff) | |
| download | vmime-bc63892291ecf245dd210e236ab14f12e31baef8.tar.gz vmime-bc63892291ecf245dd210e236ab14f12e31baef8.zip | |
OpenSSL support (thanks to Mehmet Bozkurt).
Diffstat (limited to 'src/net/pop3/POP3Store.cpp')
| -rw-r--r-- | src/net/pop3/POP3Store.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net/pop3/POP3Store.cpp b/src/net/pop3/POP3Store.cpp index 51181ece..8233cdb2 100644 --- a/src/net/pop3/POP3Store.cpp +++ b/src/net/pop3/POP3Store.cpp @@ -151,7 +151,7 @@ void POP3Store::connect() if (m_isPOP3S) // dedicated port/POP3S { ref <tls::TLSSession> tlsSession = - vmime::create <tls::TLSSession>(getCertificateVerifier()); + tls::TLSSession::create(getCertificateVerifier()); ref <tls::TLSSocket> tlsSocket = tlsSession->getSocket(m_socket); @@ -550,7 +550,7 @@ void POP3Store::startTLS() throw exceptions::command_error("STLS", response); ref <tls::TLSSession> tlsSession = - vmime::create <tls::TLSSession>(getCertificateVerifier()); + tls::TLSSession::create(getCertificateVerifier()); ref <tls::TLSSocket> tlsSocket = tlsSession->getSocket(m_socket); |
