diff options
Diffstat (limited to 'audio/mserv/patches/patch-ak')
-rw-r--r-- | audio/mserv/patches/patch-ak | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/audio/mserv/patches/patch-ak b/audio/mserv/patches/patch-ak new file mode 100644 index 00000000000..cbc9052e451 --- /dev/null +++ b/audio/mserv/patches/patch-ak @@ -0,0 +1,15 @@ +$NetBSD: patch-ak,v 1.1 2002/08/02 23:01:48 abs Exp $ + +--- mserv/opt.c.orig Thu Jul 13 22:14:41 2000 ++++ mserv/opt.c +@@ -164,8 +164,8 @@ int opt_read(const char *root) + /* special case - player variable is an indirected to another variable */ + if ((val = conf_getvalue("player")) == NULL) { + if (mserv_verbose) +- printf("No player specified, defaulting to /usr/local/bin/mpg123\n"); +- opt_player = "/usr/local/bin/mpg123"; ++ printf("No player specified, defaulting to " PATH_MPG123 "\n"); ++ opt_player = PATH_MPG123; + } else { + if ((opt_player = conf_getvalue(val)) == NULL) { + fprintf(stderr, "%s: player setting '%s' not found\n", progname, |