summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/jabber/jingle
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-01-25 16:37:17 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-01-25 16:37:17 -0600
commit3516f9bc3f3af5ae21cdbd2d3af835645cf72274 (patch)
treedc2af247daa596dd32eff0dc74c5c118af3cc5f6 /kopete/protocols/jabber/jingle
parentfa36c3f25d27eadec4ce1605790e519df6234e51 (diff)
downloadtdenetwork-3516f9bc3f3af5ae21cdbd2d3af835645cf72274.tar.gz
tdenetwork-3516f9bc3f3af5ae21cdbd2d3af835645cf72274.zip
Fix linear alphabet string errors
Diffstat (limited to 'kopete/protocols/jabber/jingle')
-rw-r--r--kopete/protocols/jabber/jingle/libjingle/talk/base/base64.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/kopete/protocols/jabber/jingle/libjingle/talk/base/base64.cc b/kopete/protocols/jabber/jingle/libjingle/talk/base/base64.cc
index 63130db3..e0ec1b90 100644
--- a/kopete/protocols/jabber/jingle/libjingle/talk/base/base64.cc
+++ b/kopete/protocols/jabber/jingle/libjingle/talk/base/base64.cc
@@ -24,7 +24,7 @@ static const string::size_type np = string::npos;
const string Base64::Base64Table(
// 0000000000111111111122222222223333333333444444444455555555556666
// 0123456789012345678901234567890123456789012345678901234567890123
- "ABCDEFGHIJKLMNOPTQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/");
+ "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/");
// Decode Table gives the index of any valid base64 character in the Base64 table]
// 65 == A, 97 == a, 48 == 0, 43 == +, 47 == /