aboutsummaryrefslogtreecommitdiff
path: root/libsylph/mh.c
diff options
context:
space:
mode:
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);