diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2005-03-19 19:27:12 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2005-03-19 19:27:12 +0000 |
commit | 233da59d093b25c52b9ef4d8cdeb39f9b8192332 (patch) | |
tree | 802385f40a4c74e1169d8d4f59a0f7d6e89f1ea0 /mail/evolution-exchange | |
parent | 89d79859821f24c2329f4ca13935e0c14ff932c5 (diff) |
Notes
Diffstat (limited to 'mail/evolution-exchange')
-rw-r--r-- | mail/evolution-exchange/files/patch-calendar_e-cal-backend-exchange.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/mail/evolution-exchange/files/patch-calendar_e-cal-backend-exchange.c b/mail/evolution-exchange/files/patch-calendar_e-cal-backend-exchange.c new file mode 100644 index 000000000000..466d30410c31 --- /dev/null +++ b/mail/evolution-exchange/files/patch-calendar_e-cal-backend-exchange.c @@ -0,0 +1,19 @@ +--- calendar/e-cal-backend-exchange.c.orig Sat Mar 19 14:24:33 2005 ++++ calendar/e-cal-backend-exchange.c Sat Mar 19 14:25:06 2005 +@@ -1432,6 +1432,7 @@ + e_cal_component_get_uid (comp, &uid); + e_cal_component_get_attachment_list (comp, &attach_list); + for (l = attach_list; l ; l = l->next){ ++ char *mime_type; + if (!strncmp ((char *)l->data, "file://", 7)) { + fname = (char *)(l->data) + strlen ("file://"); + filename = g_strrstr (fname, "/") + 1; +@@ -1461,7 +1462,7 @@ + camel_data_wrapper_construct_from_stream (wrapper, stream); + camel_object_unref (stream); + +- char *mime_type = gnome_vfs_get_mime_type (dest_url + strlen ("file://")); ++ mime_type = gnome_vfs_get_mime_type (dest_url + strlen ("file://")); + type = camel_content_type_decode (mime_type); + camel_data_wrapper_set_mime_type_field (wrapper, type); + camel_content_type_unref (type); |