aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2001-08-11 06:30:14 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2001-08-11 06:30:14 +0800
commit8e3b907c2e99770452549aa310a65cce4573cb67 (patch)
tree955307111ae4508c2f7e61efb5fe80726c100d3e /mail
parenta16770842e12da0e527eeff70be3cdcc9075e1bb (diff)
downloadgsoc2013-evolution-8e3b907c2e99770452549aa310a65cce4573cb67.tar
gsoc2013-evolution-8e3b907c2e99770452549aa310a65cce4573cb67.tar.gz
gsoc2013-evolution-8e3b907c2e99770452549aa310a65cce4573cb67.tar.bz2
gsoc2013-evolution-8e3b907c2e99770452549aa310a65cce4573cb67.tar.lz
gsoc2013-evolution-8e3b907c2e99770452549aa310a65cce4573cb67.tar.xz
gsoc2013-evolution-8e3b907c2e99770452549aa310a65cce4573cb67.tar.zst
gsoc2013-evolution-8e3b907c2e99770452549aa310a65cce4573cb67.zip
Prepend the uri with evolution: to fix bug #6916.
2001-08-10 Jeffrey Stedfast <fejj@ximian.com> * mail-callbacks.c (transfer_msg): Prepend the uri with evolution: to fix bug #6916. svn path=/trunk/; revision=11903
Diffstat (limited to 'mail')
-rw-r--r--mail/ChangeLog5
-rw-r--r--mail/mail-callbacks.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index aba2816df8..96f4b98a7b 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,8 @@
+2001-08-10 Jeffrey Stedfast <fejj@ximian.com>
+
+ * mail-callbacks.c (transfer_msg): Prepend the uri with evolution:
+ to fix bug #6916.
+
2001-08-10 Jason Leach <jleach@ximian.com>
* folder-browser.c: Make the context menu for the Sent folder have
diff --git a/mail/mail-callbacks.c b/mail/mail-callbacks.c
index b78849663f..6ad6008ccf 100644
--- a/mail/mail-callbacks.c
+++ b/mail/mail-callbacks.c
@@ -999,7 +999,7 @@ transfer_msg (GtkWidget *widget, gpointer user_data, gboolean delete_from_source
path = strchr (uri, '/');
if (path && strcmp (last, path) != 0) {
g_free (last);
- last = g_strdup (path);
+ last = g_strdup_printf ("evolution:%s", path);
}
g_free (uri);