Use '_' instead of '^' for renaming folders with dot symbol in it
authorChenthill Palanisamy <pchenthill@novell.com>
Mon, 22 Nov 2010 20:31:26 +0000 (02:01 +0530)
committerChenthill Palanisamy <pchenthill@novell.com>
Mon, 22 Nov 2010 20:32:16 +0000 (02:02 +0530)
camel/providers/local/camel-maildir-store.c

index dccc2e5..5eb28c0 100644 (file)
@@ -866,7 +866,7 @@ maildir_rename_old_folder (CamelMaildirStore *mstore, CamelFolderInfo *fi, GCanc
        CamelStoreClass *store_class;
 
        old_name = g_strdup (fi->full_name);
-       g_strdelimit (old_name, ".", '^');
+       g_strdelimit (old_name, ".", '_');
        new_name = maildir_full_name_to_dir_name (old_name);
 
        store_class = CAMEL_STORE_CLASS (camel_maildir_store_parent_class);