diff options
author | Vincent Richard <[email protected]> | 2013-06-18 20:22:29 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2013-06-18 20:22:29 +0000 |
commit | 26eecc6b35ba4f602e6febb7ca79a4d4bc878a8f (patch) | |
tree | 9eb35cbe55f80fd17d9943baba1424d5e60f2c7f | |
parent | Fixed comments. (diff) | |
download | vmime-26eecc6b35ba4f602e6febb7ca79a4d4bc878a8f.tar.gz vmime-26eecc6b35ba4f602e6febb7ca79a4d4bc878a8f.zip |
Fixed invalid cast.
-rw-r--r-- | src/net/pop3/POP3Connection.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/pop3/POP3Connection.cpp b/src/net/pop3/POP3Connection.cpp index 846d31e9..33349749 100644 --- a/src/net/pop3/POP3Connection.cpp +++ b/src/net/pop3/POP3Connection.cpp @@ -212,7 +212,7 @@ void POP3Connection::internalDisconnect() void POP3Connection::authenticate(const messageId& randomMID) { - getAuthenticator()->setService(thisRef().dynamicCast <service>()); + getAuthenticator()->setService(m_store.acquire()); #if VMIME_HAVE_SASL_SUPPORT // First, try SASL authentication |