$NetBSD: patch-aa,v 1.8 2003/12/08 14:33:47 wiz Exp $

--- src/plugins/oss/ao_oss.c.orig	Sat Oct  4 17:16:05 2003
+++ src/plugins/oss/ao_oss.c
@@ -81,22 +81,22 @@ int _open_default_oss_device (char **dev
 	char *err = NULL;
 	char *dev = NULL;
 
-	/* default: first try the devfs path */
-	*dev_path = strdup("/dev/sound/dsp");
+	/* default: first try the traditional path */
+	*dev_path = strdup("/dev/dsp");
 #ifdef BROKEN_OSS
 	fd = open(*dev_path, O_WRONLY | O_NONBLOCK);
 #else
 	fd = open(*dev_path, O_WRONLY);
 #endif /* BROKEN_OSS */
 
-	/* then try the original dsp path */
+	/* then try the NetBSD path */
 	if(fd < 0) 
 	{
 		/* no? then try the traditional path */
 		err = strdup(strerror(errno));
 		dev = strdup(*dev_path);
 		free(*dev_path);
-		*dev_path = strdup("/dev/dsp");
+		*dev_path = strdup("/dev/sound");
 #ifdef BROKEN_OSS
 		fd = open(*dev_path, O_WRONLY | O_NONBLOCK);
 #else
