# HG changeset patch # User chainsaw # Date 1145230726 25200 # Node ID 03d141f44b4d7b1471accb2d2ec6167fe03ba3fa # Parent 0606d7908abb724ab8c1ec82755d8bdcf60e66a7 [svn] Convert \ path separators to /. Support was already present, but was not enabled before. Closes bug #461. diff -r 0606d7908abb -r 03d141f44b4d audacious/playlist.c --- a/audacious/playlist.c Sun Apr 16 14:37:40 2006 -0700 +++ b/audacious/playlist.c Sun Apr 16 16:38:46 2006 -0700 @@ -1339,10 +1339,8 @@ filename = g_strchug(g_strdup(filename_p)); - if (cfg.use_backslash_as_dir_delimiter) { - while ((tmp = strchr(filename, '\\')) != NULL) - *tmp = '/'; - } + while ((tmp = strchr(filename, '\\')) != NULL) + *tmp = '/'; if (filename[0] != '/' && !strstr(filename, "://")) { path = g_strdup(playlist_name);