aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-ops.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2001-03-27 11:59:08 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2001-03-27 11:59:08 +0800
commit5aef76bbcb9099e86d4ea591f6e4cba1cee1b415 (patch)
treea5da3815a4e02a78ab48adf01fee38b0ed2a01c1 /mail/mail-ops.c
parent162a2e87c4d0309d0826b9488bdb0b32fd051823 (diff)
downloadgsoc2013-evolution-5aef76bbcb9099e86d4ea591f6e4cba1cee1b415.tar
gsoc2013-evolution-5aef76bbcb9099e86d4ea591f6e4cba1cee1b415.tar.gz
gsoc2013-evolution-5aef76bbcb9099e86d4ea591f6e4cba1cee1b415.tar.bz2
gsoc2013-evolution-5aef76bbcb9099e86d4ea591f6e4cba1cee1b415.tar.lz
gsoc2013-evolution-5aef76bbcb9099e86d4ea591f6e4cba1cee1b415.tar.xz
gsoc2013-evolution-5aef76bbcb9099e86d4ea591f6e4cba1cee1b415.tar.zst
gsoc2013-evolution-5aef76bbcb9099e86d4ea591f6e4cba1cee1b415.zip
Updated to reflect changes made to the move/copy API in camel-folder.c
2001-03-26 Jeffrey Stedfast <fejj@ximian.com> * 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. svn path=/trunk/; revision=8963
Diffstat (limited to 'mail/mail-ops.c')
-rw-r--r--mail/mail-ops.c2
1 files changed, 1 insertions, 1 deletions
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);