aboutsummaryrefslogtreecommitdiff
path: root/libsylph/mh.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2007-03-14 09:24:19 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2007-03-14 09:24:19 +0000
commit590fb309cf9e7f617e829c48eba0a85e65187753 (patch)
tree2c54b4cecaa3a6588fb9ec075786c2a59c800fdc /libsylph/mh.c
parent81b9c700d41e4081dd92612dd8101083fdc6690e (diff)
fixes data format incompatibility of folderlist.xml between Unix and Win32.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@1568 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'libsylph/mh.c')
-rw-r--r--libsylph/mh.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libsylph/mh.c b/libsylph/mh.c
index b677f9fc..c90bb117 100644
--- a/libsylph/mh.c
+++ b/libsylph/mh.c
@@ -1068,9 +1068,9 @@ static FolderItem *mh_create_folder(Folder *folder, FolderItem *parent,
g_free(fullpath);
+ /* path is a logical folder path */
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);
new_item = folder_item_new(name, path);