summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-01-25 16:36:35 -0600
committerSlávek Banko <slavek.banko@axis.cz>2012-06-03 18:07:31 +0200
commitc3ec050916bc989d6307e474956e43ce58e39438 (patch)
tree9d5fdcf2bb697dc0ac51013ec42b1b4abdc18144
parent081c4ebc7e4a3664542206496a9f5eb4291ff9a8 (diff)
downloadtdemultimedia-c3ec050916bc989d6307e474956e43ce58e39438.tar.gz
tdemultimedia-c3ec050916bc989d6307e474956e43ce58e39438.zip
Fix linear alphabet string errors
(cherry picked from commit fd6afacf70587de329d9b2647b96469bae5e74da)
-rw-r--r--mpg123_artsplugin/mpg123/httpget.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mpg123_artsplugin/mpg123/httpget.c b/mpg123_artsplugin/mpg123/httpget.c
index 12c6941f..71750115 100644
--- a/mpg123_artsplugin/mpg123/httpget.c
+++ b/mpg123_artsplugin/mpg123/httpget.c
@@ -83,7 +83,7 @@ void readstring (char *string, int maxlen, FILE *f)
void encode64 (char *source,char *destination)
{
static char *Base64Digits =
- "ABCDEFGHIJKLMNOPTQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
+ "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
int n = 0;
int ssiz=strlen(source);
int i;