aboutsummaryrefslogtreecommitdiff
path: root/src/query_search.c
diff options
context:
space:
mode:
authorHiro <Hiro@ee746299-78ed-0310-b773-934348b2243d>2007-04-27 13:55:41 +0000
committerHiro <Hiro@ee746299-78ed-0310-b773-934348b2243d>2007-04-27 13:55:41 +0000
commitadd23cb3f280d1387c989c7e1f0747a9b140e886 (patch)
treee040c99a414242732ab393b05cbdc46f6a707f47 /src/query_search.c
parent0b083303dd0edc13a505bed0eb3caa508e09de13 (diff)
win32: fixed path separator problem in virtual folder.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@1678 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/query_search.c')
-rw-r--r--src/query_search.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/query_search.c b/src/query_search.c
index ac57bce7..68e40436 100644
--- a/src/query_search.c
+++ b/src/query_search.c
@@ -973,7 +973,7 @@ static FolderItem *query_search_create_vfolder(FolderItem *parent,
}
if (parent->path)
- path = g_strconcat(parent->path, G_DIR_SEPARATOR_S, name, NULL);
+ path = g_strconcat(parent->path, "/", name, NULL);
else
path = g_strdup(name);