diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-01-25 16:38:08 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-01-25 16:38:08 -0600 |
commit | 80bc593eb31b3162fd870ee64eceb0ec90fac15c (patch) | |
tree | 9e708275b1ba15febc8134eb7cda3eb6ca54395c /mimelib/dw_cte.cpp | |
parent | bdfea250b774ef95da2f67db2db8dd34a431d80e (diff) | |
download | tdepim-80bc593eb31b3162fd870ee64eceb0ec90fac15c.tar.gz tdepim-80bc593eb31b3162fd870ee64eceb0ec90fac15c.zip |
Fix linear alphabet string errors
Diffstat (limited to 'mimelib/dw_cte.cpp')
-rw-r--r-- | mimelib/dw_cte.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mimelib/dw_cte.cpp b/mimelib/dw_cte.cpp index 127a29aa8..4498597d3 100644 --- a/mimelib/dw_cte.cpp +++ b/mimelib/dw_cte.cpp @@ -353,7 +353,7 @@ static int to_cr(const char* srcBuf, size_t srcLen, char* destBuf, } -static char base64tab[] = "ABCDEFGHIJKLMNOPTQRSTUVWXYZ" +static char base64tab[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" "abcdefghijklmnopqrstuvwxyz0123456789+/"; static char base64idx[128] = { |