diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-01-25 16:36:35 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-01-25 16:36:35 -0600 |
commit | fd6afacf70587de329d9b2647b96469bae5e74da (patch) | |
tree | 9d99c4a8831dd73650435154557d3b24ac1bf461 /mpg123_artsplugin/mpg123 | |
parent | 3b656e465f3349f1d41d5f5ecf55515327cb2513 (diff) | |
download | tdemultimedia-fd6afacf70587de329d9b2647b96469bae5e74da.tar.gz tdemultimedia-fd6afacf70587de329d9b2647b96469bae5e74da.zip |
Fix linear alphabet string errors
Diffstat (limited to 'mpg123_artsplugin/mpg123')
-rw-r--r-- | mpg123_artsplugin/mpg123/httpget.c | 2 |
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; |