summaryrefslogtreecommitdiffstats
path: root/redhat/tdemultimedia/kdemultimedia-3.5.13-fix_linear_alphabet.patch
diff options
context:
space:
mode:
Diffstat (limited to 'redhat/tdemultimedia/kdemultimedia-3.5.13-fix_linear_alphabet.patch')
-rw-r--r--redhat/tdemultimedia/kdemultimedia-3.5.13-fix_linear_alphabet.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/redhat/tdemultimedia/kdemultimedia-3.5.13-fix_linear_alphabet.patch b/redhat/tdemultimedia/kdemultimedia-3.5.13-fix_linear_alphabet.patch
deleted file mode 100644
index 4bd48f89a..000000000
--- a/redhat/tdemultimedia/kdemultimedia-3.5.13-fix_linear_alphabet.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-commit fd6afacf70587de329d9b2647b96469bae5e74da
-Author: Timothy Pearson <kb9vqf@pearsoncomputing.net>
-Date: 1327530995 -0600
-
- Fix linear alphabet string errors
-
-diff --git a/mpg123_artsplugin/mpg123/httpget.c b/mpg123_artsplugin/mpg123/httpget.c
-index 12c6941..7175011 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;