diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-01-25 16:37:17 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-01-25 16:37:17 -0600 |
commit | 3516f9bc3f3af5ae21cdbd2d3af835645cf72274 (patch) | |
tree | dc2af247daa596dd32eff0dc74c5c118af3cc5f6 /kopete/protocols/yahoo/libkyahoo/crypt.c | |
parent | fa36c3f25d27eadec4ce1605790e519df6234e51 (diff) | |
download | tdenetwork-3516f9bc3f3af5ae21cdbd2d3af835645cf72274.tar.gz tdenetwork-3516f9bc3f3af5ae21cdbd2d3af835645cf72274.zip |
Fix linear alphabet string errors
Diffstat (limited to 'kopete/protocols/yahoo/libkyahoo/crypt.c')
-rw-r--r-- | kopete/protocols/yahoo/libkyahoo/crypt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kopete/protocols/yahoo/libkyahoo/crypt.c b/kopete/protocols/yahoo/libkyahoo/crypt.c index 76620bc4..ee15c345 100644 --- a/kopete/protocols/yahoo/libkyahoo/crypt.c +++ b/kopete/protocols/yahoo/libkyahoo/crypt.c @@ -45,7 +45,7 @@ static const char md5_salt_prefix[] = "$1$"; /* Table with characters for base64 transformation. */ static const char b64t[64] = -"./0123456789ABCDEFGHIJKLMNOPTQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"; +"./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"; char *yahoo_crypt(const char *key, const char *salt); |