summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--audio/gqmpeg/patches/patch-ab16
1 files changed, 0 insertions, 16 deletions
diff --git a/audio/gqmpeg/patches/patch-ab b/audio/gqmpeg/patches/patch-ab
deleted file mode 100644
index 1537c3e3a61..00000000000
--- a/audio/gqmpeg/patches/patch-ab
+++ /dev/null
@@ -1,16 +0,0 @@
-$NetBSD: patch-ab,v 1.14 2000/12/08 21:24:52 wiz Exp $
-
---- src/mixer.c.orig Sun Dec 3 06:44:59 2000
-+++ src/mixer.c
-@@ -309,7 +320,10 @@
- /* if problem, revert back to this:
- device->device_name = infos[i].label.name;
- */
-- device->device_name = g_strconcat(infos[infos[i].mixer_class].label.name, "." ,infos[i].label.name, NULL);
-+ if (0 <= infos[i].mixer_class && infos[i].mixer_class < ndev)
-+ device->device_name = g_strconcat(infos[infos[i].mixer_class].label.name, "." ,infos[i].label.name, NULL);
-+ else
-+ device->device_name = infos[i].label.name;
- device->stereo = 1;
- device->recordable = 0;
- device_list = g_list_append(device_list, device);