aboutsummaryrefslogtreecommitdiffstats
path: root/src/security/sasl/SASLSession.cpp
diff options
context:
space:
mode:
authorVincent Richard <[email protected]>2006-04-18 19:04:30 +0000
committerVincent Richard <[email protected]>2006-04-18 19:04:30 +0000
commit3bbffc18de859c02130f135293e90a280101b79f (patch)
treef7264d66f60e184212306ff701d6939648bfac3b /src/security/sasl/SASLSession.cpp
parentClean up. (diff)
downloadvmime-3bbffc18de859c02130f135293e90a280101b79f.tar.gz
vmime-3bbffc18de859c02130f135293e90a280101b79f.zip
Renamed 'byte' to 'byte_t'.
Diffstat (limited to 'src/security/sasl/SASLSession.cpp')
-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 64606d01..9e66baa0 100644
--- a/src/security/sasl/SASLSession.cpp
+++ b/src/security/sasl/SASLSession.cpp
@@ -93,8 +93,8 @@ ref <SASLContext> SASLSession::getContext()
const bool SASLSession::evaluateChallenge
- (const byte* challenge, const int challengeLen,
- byte** response, int* responseLen)
+ (const byte_t* challenge, const int challengeLen,
+ byte_t** response, int* responseLen)
{
return m_mech->step(thisRef().dynamicCast <SASLSession>(),
challenge, challengeLen, response, responseLen);