aboutsummaryrefslogtreecommitdiffstats
path: root/src/security/sasl/SASLSession.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/security/sasl/SASLSession.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/security/sasl/SASLSession.cpp b/src/security/sasl/SASLSession.cpp
index 1bdd0889..087ef27b 100644
--- a/src/security/sasl/SASLSession.cpp
+++ b/src/security/sasl/SASLSession.cpp
@@ -99,8 +99,8 @@ shared_ptr <SASLContext> SASLSession::getContext()
bool SASLSession::evaluateChallenge
- (const byte_t* challenge, const long challengeLen,
- byte_t** response, long* responseLen)
+ (const byte_t* challenge, const size_t challengeLen,
+ byte_t** response, size_t* responseLen)
{
return m_mech->step(dynamicCast <SASLSession>(shared_from_this()),
challenge, challengeLen, response, responseLen);