diff options
author | Vincent Richard <[email protected]> | 2012-11-29 21:33:04 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2012-11-29 21:33:31 +0000 |
commit | 71f06fab915f20d10b4b97d6c927087228b51f6e (patch) | |
tree | 399177abb33447877be7e80c545c9f16ada1e078 /src/security/sasl/SASLSession.cpp | |
parent | Better handling of SSL_ERROR_WANT_READ/SSL_ERROR_WANT_WRITE. Sockets on Windo... (diff) | |
download | vmime-71f06fab915f20d10b4b97d6c927087228b51f6e.tar.gz vmime-71f06fab915f20d10b4b97d6c927087228b51f6e.zip |
Trivial 64-bit warning fixes.
Diffstat (limited to 'src/security/sasl/SASLSession.cpp')
-rw-r--r-- | src/security/sasl/SASLSession.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/security/sasl/SASLSession.cpp b/src/security/sasl/SASLSession.cpp index dcf53452..1ab6d577 100644 --- a/src/security/sasl/SASLSession.cpp +++ b/src/security/sasl/SASLSession.cpp @@ -99,8 +99,8 @@ ref <SASLContext> SASLSession::getContext() bool SASLSession::evaluateChallenge - (const byte_t* challenge, const int challengeLen, - byte_t** response, int* responseLen) + (const byte_t* challenge, const long challengeLen, + byte_t** response, long* responseLen) { return m_mech->step(thisRef().dynamicCast <SASLSession>(), challenge, challengeLen, response, responseLen); |