summaryrefslogtreecommitdiff
path: root/audio/cmus/patches
diff options
context:
space:
mode:
Diffstat (limited to 'audio/cmus/patches')
-rw-r--r--audio/cmus/patches/patch-aa13
-rw-r--r--audio/cmus/patches/patch-ab13
-rw-r--r--audio/cmus/patches/patch-ac13
-rw-r--r--audio/cmus/patches/patch-ad13
-rw-r--r--audio/cmus/patches/patch-ae13
5 files changed, 0 insertions, 65 deletions
diff --git a/audio/cmus/patches/patch-aa b/audio/cmus/patches/patch-aa
deleted file mode 100644
index b0779a0972b..00000000000
--- a/audio/cmus/patches/patch-aa
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-aa,v 1.1 2008/11/17 13:30:34 ahoka Exp $
-
---- Doc/ttman.c.orig 2007-07-27 16:52:13.000000000 +0200
-+++ Doc/ttman.c
-@@ -175,7 +175,7 @@ static int emit_keyword(const char *buf,
- int i, len;
-
- for (len = 0; len < size; len++) {
-- if (!isalnum(buf[len]))
-+ if (!isalnum((unsigned char)buf[len]))
- break;
- }
-
diff --git a/audio/cmus/patches/patch-ab b/audio/cmus/patches/patch-ab
deleted file mode 100644
index 8632425f052..00000000000
--- a/audio/cmus/patches/patch-ab
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ab,v 1.1 2008/11/17 13:30:34 ahoka Exp $
-
---- cmus.c.orig 2007-07-27 16:52:13.000000000 +0200
-+++ cmus.c
-@@ -560,7 +560,7 @@ static int pl_handle_line(void *data, co
- struct pl_data *d = data;
- int i = 0;
-
-- while (isspace(line[i]))
-+ while (isspace((unsigned char)line[i]))
- i++;
- if (line[i] == 0)
- return 0;
diff --git a/audio/cmus/patches/patch-ac b/audio/cmus/patches/patch-ac
deleted file mode 100644
index 2c1b9b20971..00000000000
--- a/audio/cmus/patches/patch-ac
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ac,v 1.1 2008/11/17 13:30:34 ahoka Exp $
-
---- command_mode.c.orig 2007-07-27 16:52:13.000000000 +0200
-+++ command_mode.c
-@@ -495,7 +495,7 @@ inside:
- goto err;
-
- if (count == 1) {
-- switch (tolower(*arg)) {
-+ switch (tolower((unsigned char)*arg)) {
- case 'h':
- seek *= 60;
- case 'm':
diff --git a/audio/cmus/patches/patch-ad b/audio/cmus/patches/patch-ad
deleted file mode 100644
index cf0fc48a75c..00000000000
--- a/audio/cmus/patches/patch-ad
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ad,v 1.1 2008/11/17 13:30:34 ahoka Exp $
-
---- filters.c.orig 2007-07-27 16:52:13.000000000 +0200
-+++ filters.c
-@@ -272,7 +272,7 @@ static int validate_filter_name(const ch
- int i;
-
- for (i = 0; name[i]; i++) {
-- if (isalnum(name[i]))
-+ if (isalnum((unsigned char)name[i]))
- continue;
- if (name[i] == '_' || name[i] == '-')
- continue;
diff --git a/audio/cmus/patches/patch-ae b/audio/cmus/patches/patch-ae
deleted file mode 100644
index 37e16d26e54..00000000000
--- a/audio/cmus/patches/patch-ae
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ae,v 1.2 2008/12/19 15:14:20 ahoka Exp $
-
---- cmus-status-display.orig 2007-07-27 16:52:13.000000000 +0200
-+++ cmus-status-display
-@@ -19,7 +19,7 @@
- output()
- {
- # write status to /tmp/cmus-status (not very useful though)
-- echo "$*" >> /tmp/cmus-status 2>&1
-+ echo "$*" >> $HOME/.cmus-status 2>&1
-
- # WMI (http://wmi.modprobe.de/)
- #wmiremote -t "$*" &> /dev/null