diff -p -up audacious-plugins-2.1/src/gtkui/util.c~ audacious-plugins-2.1/src/gtkui/util.c --- audacious-plugins-2.1/src/gtkui/util.c~ 2009-07-07 00:40:36.000000000 +0200 +++ audacious-plugins-2.1/src/gtkui/util.c 2009-07-13 21:13:20.000000000 +0200 @@ -79,14 +79,14 @@ find_file_func(const gchar * path, const return TRUE; } - if (vfs_file_test(path, G_FILE_TEST_IS_REGULAR)) { + if (aud_vfs_file_test(path, G_FILE_TEST_IS_REGULAR)) { if (!strcasecmp(basename, context->to_match)) { context->match = g_strdup(path); context->found = TRUE; return TRUE; } } - else if (vfs_file_test(path, G_FILE_TEST_IS_DIR)) { + else if (aud_vfs_file_test(path, G_FILE_TEST_IS_DIR)) { dir_foreach(path, find_file_func, context, NULL); if (context->found) return TRUE; @@ -177,7 +177,7 @@ open_ini_file(const gchar *filename) unsigned char x[] = { 0xff, 0xfe, 0x00 }; g_return_val_if_fail(filename, NULL); - vfs_file_get_contents(filename, &buffer, &filesize); + aud_vfs_file_get_contents(filename, &buffer, &filesize); if (buffer == NULL) return NULL;