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/net/smtp/SMTPTransport.cpp | |
parent | Clean up. (diff) | |
download | vmime-3bbffc18de859c02130f135293e90a280101b79f.tar.gz vmime-3bbffc18de859c02130f135293e90a280101b79f.zip |
Renamed 'byte' to 'byte_t'.
Diffstat (limited to 'src/net/smtp/SMTPTransport.cpp')
-rw-r--r-- | src/net/smtp/SMTPTransport.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net/smtp/SMTPTransport.cpp b/src/net/smtp/SMTPTransport.cpp index 4ce19716..1b634151 100644 --- a/src/net/smtp/SMTPTransport.cpp +++ b/src/net/smtp/SMTPTransport.cpp @@ -355,10 +355,10 @@ void SMTPTransport::authenticateSASL() } case 334: { - byte* challenge = 0; + byte_t* challenge = 0; int challengeLen = 0; - byte* resp = 0; + byte_t* resp = 0; int respLen = 0; try |