# HG changeset patch # User renatofilho # Date 1176413924 -3600 # Node ID 0bf798c3f17e1fc46057e84f93fc82076f55489b # Parent d6f9b041734693e8b4405d4bee7732a4b8c2396f [svn r546] fixed parse diff -r d6f9b0417346 -r 0bf798c3f17e gmyth-stream/libgnomevfs2/modules/gmythstream-method.c --- a/gmyth-stream/libgnomevfs2/modules/gmythstream-method.c Thu Apr 12 22:34:28 2007 +0100 +++ b/gmyth-stream/libgnomevfs2/modules/gmythstream-method.c Thu Apr 12 22:38:44 2007 +0100 @@ -186,11 +186,13 @@ if (((*c == '?') || (c[1] == '\0')) && !open) { if (*c != '?') g_string_append_c (entry, *c); - args = g_slist_append (args, g_strdup (entry->str)); entry = g_string_assign (entry, ""); } else { - g_string_append_c (entry, *c); + if (*c == '+') + g_string_append_c (entry, "//"); + else + g_string_append_c (entry, *c); } c = c + 1; } while (*c != '\0');