diff options
-rw-r--r-- | mail/ChangeLog | 1 | ||||
-rw-r--r-- | mail/mail-ops.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 0e0860ef3c..3e72f039bd 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -2,6 +2,7 @@ * mail-ops.c (transfer_messages_transfer): Updated to reflect changes made to the move/copy API in camel-folder.c + (add_vtrash_info): Use /Trash as the path instead of Trash. * mail-local.c (reconfigure_folder_reconfigure): Updated this too. diff --git a/mail/mail-ops.c b/mail/mail-ops.c index 5c234bde35..e2a4bc8db0 100644 --- a/mail/mail-ops.c +++ b/mail/mail-ops.c @@ -943,7 +943,7 @@ add_vtrash_info (CamelFolderInfo *info) /* create our vTrash URL */ url = camel_url_new (info->url, NULL); g_free (url->path); - url->path = g_strdup (_("Trash")); + url->path = g_strdup_printf ("/%s", _("Trash")); uri = camel_url_to_string (url, FALSE); camel_url_free (url); |