aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/base64.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/base64.cpp b/src/base64.cpp
index 9511525a6..6cfdc921e 100644
--- a/src/base64.cpp
+++ b/src/base64.cpp
@@ -169,13 +169,15 @@ void Base64_Decoder::decode_and_send(const byte block[], u32bit length)
*************************************************/
void Base64_Decoder::handle_bad_char(byte c)
{
- if(checking == NONE)
+ if(c == '=' || checking == NONE)
return;
if((checking == IGNORE_WS) && Charset::is_space(c))
return;
- throw Decoding_Error("Base64_Decoder: Invalid base64 character: " + c);
+ throw Decoding_Error(
+ std::string("Base64_Decoder: Invalid base64 character '") + (char)c + "'"
+ );
}
/*************************************************