diff options
Diffstat (limited to '')
-rw-r--r-- | src/net/pop3/POP3Connection.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/net/pop3/POP3Connection.cpp b/src/net/pop3/POP3Connection.cpp index 547ef5ef..5fa923f4 100644 --- a/src/net/pop3/POP3Connection.cpp +++ b/src/net/pop3/POP3Connection.cpp @@ -463,10 +463,10 @@ void POP3Connection::authenticateSASL() case POP3Response::CODE_READY: { byte_t* challenge = 0; - long challengeLen = 0; + size_t challengeLen = 0; byte_t* resp = 0; - long respLen = 0; + size_t respLen = 0; try { @@ -495,7 +495,7 @@ void POP3Connection::authenticateSASL() } // Cancel SASL exchange - m_socket->sendRaw("*\r\n", 3); + m_socket->send("*\r\n"); } catch (...) { |