From 3bbffc18de859c02130f135293e90a280101b79f Mon Sep 17 00:00:00 2001 From: Vincent Richard Date: Tue, 18 Apr 2006 19:04:30 +0000 Subject: Renamed 'byte' to 'byte_t'. --- src/security/sasl/SASLSocket.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/security/sasl/SASLSocket.cpp') diff --git a/src/security/sasl/SASLSocket.cpp b/src/security/sasl/SASLSocket.cpp index 1d2caff1..b4d1794f 100644 --- a/src/security/sasl/SASLSocket.cpp +++ b/src/security/sasl/SASLSocket.cpp @@ -105,11 +105,11 @@ const int SASLSocket::receiveRaw(char* buffer, const int count) const int n = m_wrapped->receiveRaw(buffer, count); - byte* output = 0; + byte_t* output = 0; int outputLen = 0; m_session->getMechanism()->decode - (m_session, reinterpret_cast (buffer), n, + (m_session, reinterpret_cast (buffer), n, &output, &outputLen); // If we can not copy all decoded data into the output buffer, put @@ -143,11 +143,11 @@ void SASLSocket::send(const string& buffer) void SASLSocket::sendRaw(const char* buffer, const int count) { - byte* output = 0; + byte_t* output = 0; int outputLen = 0; m_session->getMechanism()->encode - (m_session, reinterpret_cast (buffer), count, + (m_session, reinterpret_cast (buffer), count, &output, &outputLen); try -- cgit v1.2.3