changeset 2336:b332cdd2ea43 trunk

[svn] - warning fixes
author nenolod
date Mon, 15 Jan 2007 08:48:46 -0800
parents e80c9dfc93aa
children 7d1dc0ca6df8
files ChangeLog src/audacious/vfs.c
diffstat 2 files changed, 12 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Mon Jan 15 08:44:39 2007 -0800
+++ b/ChangeLog	Mon Jan 15 08:48:46 2007 -0800
@@ -1,3 +1,13 @@
+2007-01-15 16:44:39 +0000  William Pitcock <nenolod@sacredspiral.co.uk>
+  revision [3680]
+  - g_strsplit() wraps strsplit(3), and thus has different results on 
+    different systems (strsplit nul-terminates on uclibc). process URIs
+    in a different way, as a result.
+  
+  trunk/src/audacious/vfs.c |   36 +++++++-----------------------------
+  1 file changed, 7 insertions(+), 29 deletions(-)
+
+
 2007-01-15 16:08:40 +0000  William Pitcock <nenolod@sacredspiral.co.uk>
   revision [3678]
   - only evaluate -DHAVE_CONFIG_H if we're in audacious core. closes #760.
--- a/src/audacious/vfs.c	Mon Jan 15 08:44:39 2007 -0800
+++ b/src/audacious/vfs.c	Mon Jan 15 08:48:46 2007 -0800
@@ -22,6 +22,8 @@
 #include <sys/stat.h>
 #include <sys/types.h>
 
+#include <string.h>
+
 #include "libaudacious/urldecode.h"
 
 static GList *vfs_transports = NULL;