DeaDBeeF (as in 0xDEADBEEF) is an audio player for GNU/Linux, BSD, OpenSolaris and probably other UNIX-like systems. ok dcoppa@
22 lines
1.0 KiB
Plaintext
22 lines
1.0 KiB
Plaintext
$OpenBSD: patch-plugins_c,v 1.1.1.1 2012/08/08 18:06:48 shadchin Exp $
|
|
--- plugins.c.orig Mon Jun 4 02:56:09 2012
|
|
+++ plugins.c Tue Jun 5 21:57:26 2012
|
|
@@ -1091,7 +1091,7 @@ plug_select_output (void) {
|
|
return 0;
|
|
#else
|
|
char outplugname[100];
|
|
- conf_get_str ("output_plugin", "ALSA output plugin", outplugname, sizeof (outplugname));
|
|
+ conf_get_str ("output_plugin", "sndio output plugin", outplugname, sizeof (outplugname));
|
|
for (int i = 0; g_output_plugins[i]; i++) {
|
|
DB_output_t *p = g_output_plugins[i];
|
|
if (!strcmp (p->plugin.name, outplugname)) {
|
|
@@ -1133,7 +1133,7 @@ plug_reinit_sound (void) {
|
|
|
|
if (plug_select_output () < 0) {
|
|
char outplugname[100];
|
|
- conf_get_str ("output_plugin", "ALSA output plugin", outplugname, sizeof (outplugname));
|
|
+ conf_get_str ("output_plugin", "sndio output plugin", outplugname, sizeof (outplugname));
|
|
trace ("failed to select output plugin %s\nreverted to %s\n", outplugname, prev->plugin.name);
|
|
output_plugin = prev;
|
|
}
|