# HG changeset patch # User nenolod # Date 1164341255 28800 # Node ID 1e0503521702bbc1c583c76afc3034881197e735 # Parent 93c59698f5fdcd98c3e74982879e9270c11c6185 [svn] - remove unneeded debugging notices ;) diff -r 93c59698f5fd -r 1e0503521702 ChangeLog --- a/ChangeLog Thu Nov 23 20:06:19 2006 -0800 +++ b/ChangeLog Thu Nov 23 20:07:35 2006 -0800 @@ -1,3 +1,13 @@ +2006-11-24 04:06:19 +0000 William Pitcock + revision [2983] + - NewVFS lives ;) + + trunk/libaudacious/vfs.c | 99 ++++++++++++++++++++++++++++++++--------- + trunk/libaudacious/vfs.h | 2 + trunk/libaudacious/vfs_stdio.c | 5 -- + 3 files changed, 82 insertions(+), 24 deletions(-) + + 2006-11-23 18:38:16 +0000 William Pitcock revision [2981] - fix the %20 in playlist issue. Patch by external contributor Ralf diff -r 93c59698f5fd -r 1e0503521702 libaudacious/vfs.c --- a/libaudacious/vfs.c Thu Nov 23 20:06:19 2006 -0800 +++ b/libaudacious/vfs.c Thu Nov 23 20:07:35 2006 -0800 @@ -25,8 +25,6 @@ static GList *vfs_transports = NULL; -#define VFS_DEBUG - #ifdef VFS_DEBUG # define DBG(x, args...) g_print(x, ## args); #else @@ -36,8 +34,6 @@ gboolean vfs_register_transport(VFSConstructor *vtable) { - DBG("registering transport [%s]\n", vtable->uri_id); - vfs_transports = g_list_append(vfs_transports, vtable); return TRUE; @@ -57,8 +53,6 @@ vec = g_strsplit(path, "://", 2); - DBG("vec[0]: %s, vec[1]: %s\n", vec[0], vec[1]); - /* special case: no transport specified, look for the "/" transport */ if (vec[1] == NULL) { @@ -97,8 +91,6 @@ file->uri = g_strdup(path); file->base = vtable; - DBG("returning %p", file); - return file; }