diff options
author | Vincent Richard <[email protected]> | 2006-04-18 19:04:30 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2006-04-18 19:04:30 +0000 |
commit | 3bbffc18de859c02130f135293e90a280101b79f (patch) | |
tree | f7264d66f60e184212306ff701d6939648bfac3b /src/security/sasl/SASLSocket.cpp | |
parent | Clean up. (diff) | |
download | vmime-3bbffc18de859c02130f135293e90a280101b79f.tar.gz vmime-3bbffc18de859c02130f135293e90a280101b79f.zip |
Renamed 'byte' to 'byte_t'.
Diffstat (limited to 'src/security/sasl/SASLSocket.cpp')
-rw-r--r-- | src/security/sasl/SASLSocket.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
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 <const byte*>(buffer), n, + (m_session, reinterpret_cast <const byte_t*>(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 <const byte*>(buffer), count, + (m_session, reinterpret_cast <const byte_t*>(buffer), count, &output, &outputLen); try |