aboutsummaryrefslogtreecommitdiffstats
path: root/src/net/imap/IMAPConnection.cpp
diff options
context:
space:
mode:
authorVincent Richard <[email protected]>2012-11-29 21:33:04 +0000
committerVincent Richard <[email protected]>2012-11-29 21:33:31 +0000
commit71f06fab915f20d10b4b97d6c927087228b51f6e (patch)
tree399177abb33447877be7e80c545c9f16ada1e078 /src/net/imap/IMAPConnection.cpp
parentBetter handling of SSL_ERROR_WANT_READ/SSL_ERROR_WANT_WRITE. Sockets on Windo... (diff)
downloadvmime-71f06fab915f20d10b4b97d6c927087228b51f6e.tar.gz
vmime-71f06fab915f20d10b4b97d6c927087228b51f6e.zip
Trivial 64-bit warning fixes.
Diffstat (limited to 'src/net/imap/IMAPConnection.cpp')
-rw-r--r--src/net/imap/IMAPConnection.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net/imap/IMAPConnection.cpp b/src/net/imap/IMAPConnection.cpp
index 6c8b400e..35c3dbe5 100644
--- a/src/net/imap/IMAPConnection.cpp
+++ b/src/net/imap/IMAPConnection.cpp
@@ -381,10 +381,10 @@ void IMAPConnection::authenticateSASL()
}
byte_t* challenge = 0;
- int challengeLen = 0;
+ long challengeLen = 0;
byte_t* resp = 0;
- int respLen = 0;
+ long respLen = 0;
try
{