diff src/timidity/libtimidity/common.c @ 2038:04155ce9e72e

Automated merge with file:/home/ccr/audacious/plugins
author Matti Hamalainen <ccr@tnsp.org>
date Sat, 13 Oct 2007 21:53:47 +0300
parents fa9f85cebade
children bcd96cdc3a92
line wrap: on
line diff
--- a/src/timidity/libtimidity/common.c	Sat Oct 13 21:53:37 2007 +0300
+++ b/src/timidity/libtimidity/common.c	Sat Oct 13 21:53:47 2007 +0300
@@ -51,7 +51,7 @@
   /* First try the given name */
 
   DEBUG_MSG("Trying to open %s\n", name);
-  if ((fp = vfs_fopen(g_filename_to_uri(name, NULL, NULL), OPEN_MODE)))
+  if ((fp = aud_vfs_fopen(g_filename_to_uri(name, NULL, NULL), OPEN_MODE)))
     return fp;
 
   if (name[0] != PATH_SEP)
@@ -75,7 +75,7 @@
 	  }
 	strcat(current_filename, name);
 	DEBUG_MSG("Trying to open %s\n", current_filename);
-	if ((fp = vfs_fopen(g_filename_to_uri(current_filename, NULL, NULL), OPEN_MODE)))
+	if ((fp = aud_vfs_fopen(g_filename_to_uri(current_filename, NULL, NULL), OPEN_MODE)))
 	  return fp;
 	plp = plp->next;
       }