From 8e3b907c2e99770452549aa310a65cce4573cb67 Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Fri, 10 Aug 2001 22:30:14 +0000 Subject: Prepend the uri with evolution: to fix bug #6916. 2001-08-10 Jeffrey Stedfast * mail-callbacks.c (transfer_msg): Prepend the uri with evolution: to fix bug #6916. svn path=/trunk/; revision=11903 --- mail/ChangeLog | 5 +++++ mail/mail-callbacks.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) (limited to 'mail') 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 + + * mail-callbacks.c (transfer_msg): Prepend the uri with evolution: + to fix bug #6916. + 2001-08-10 Jason Leach * 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); -- cgit v1.2.3