aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/tnef-attachments/tnef-plugin.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/tnef-attachments/tnef-plugin.c')
-rw-r--r--plugins/tnef-attachments/tnef-plugin.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/tnef-attachments/tnef-plugin.c b/plugins/tnef-attachments/tnef-plugin.c
index f353d15366..f18b90b144 100644
--- a/plugins/tnef-attachments/tnef-plugin.c
+++ b/plugins/tnef-attachments/tnef-plugin.c
@@ -847,7 +847,7 @@ void saveVCalendar(TNEFStruct *tnef, const gchar *tmpdir) {
DDWORD ddword_val;
dtr thedate;
- sprintf(ifilename, "%s/calendar.vcf", tmpdir);
+ sprintf(ifilename, "%s/calendar.ics", tmpdir);
printf("%s\n", ifilename);
if ((fptr = fopen(ifilename, "wb"))==NULL) {
@@ -1110,7 +1110,7 @@ void saveVTask(TNEFStruct *tnef, const gchar *tmpdir) {
while (vl->data[index] == ' ')
vl->data[index--] = 0;
- sprintf(ifilename, "%s/%s.vcf", tmpdir, vl->data);
+ sprintf(ifilename, "%s/%s.ics", tmpdir, vl->data);
for (i=0; i<strlen(ifilename); i++)
if (ifilename[i] == ' ')
ifilename[i] = '_';