diff audacious/playlist.c @ 2019:d3a62e1075e2 trunk

[svn] Allow \ to / conversion to be switched on & off, by external contributor Chris Kehler <cbkehler@sympatico.ca>.
author chainsaw
date Wed, 29 Nov 2006 12:45:02 -0800
parents 5f19843a038b
children f15664434382
line wrap: on
line diff
--- a/audacious/playlist.c	Tue Nov 28 12:06:18 2006 -0800
+++ b/audacious/playlist.c	Wed Nov 29 12:45:02 2006 -0800
@@ -1354,6 +1354,7 @@
 
     filename = g_strchug(g_strdup(filename_p));
 
+    if(cfg.convert_slash)
     while ((tmp = strchr(filename, '\\')) != NULL)
         *tmp = '/';