diff options
Diffstat (limited to 'src/net/pop3')
-rw-r--r-- | src/net/pop3/POP3Store.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/net/pop3/POP3Store.cpp b/src/net/pop3/POP3Store.cpp index 8233cdb2..f8a8ec0a 100644 --- a/src/net/pop3/POP3Store.cpp +++ b/src/net/pop3/POP3Store.cpp @@ -466,10 +466,10 @@ void POP3Store::authenticateSASL() case RESPONSE_READY: { byte_t* challenge = 0; - int challengeLen = 0; + long challengeLen = 0; byte_t* resp = 0; - int respLen = 0; + long respLen = 0; try { @@ -749,7 +749,7 @@ void POP3Store::readResponse(string& buffer, const bool multiLine, utility::progressListener* progress) { bool foundTerminator = false; - int current = 0, total = 0; + long current = 0, total = 0; if (progress) progress->start(total); @@ -846,7 +846,7 @@ void POP3Store::readResponse(string& buffer, const bool multiLine, void POP3Store::readResponse(utility::outputStream& os, utility::progressListener* progress, const int predictedSize) { - int current = 0, total = predictedSize; + long current = 0, total = predictedSize; string temp; bool codeDone = false; |