From 71f06fab915f20d10b4b97d6c927087228b51f6e Mon Sep 17 00:00:00 2001 From: Vincent Richard Date: Thu, 29 Nov 2012 22:33:04 +0100 Subject: Trivial 64-bit warning fixes. --- src/security/sasl/SASLSession.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/security/sasl/SASLSession.cpp') 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 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 (), challenge, challengeLen, response, responseLen); -- cgit v1.2.3