aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorFrederic Culot <calcurse@culot.org>2009-06-23 08:11:07 +0000
committerFrederic Culot <calcurse@culot.org>2009-06-23 08:11:07 +0000
commit1a1dda24c383d1fd58fe461d984cfee88bb56c5e (patch)
treed8f8925e1664bf470427bc664afd961bfeda8e88 /src
parent0a921d513a5145d3d88739216b704503ddfe0b2b (diff)
downloadcalcurse-1a1dda24c383d1fd58fe461d984cfee88bb56c5e.tar.gz
calcurse-1a1dda24c383d1fd58fe461d984cfee88bb56c5e.zip
bugfix: missing 'T' letter in ical export DURATION field (thanks cuz for reporting it)
Diffstat (limited to 'src')
-rwxr-xr-xsrc/io.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/io.c b/src/io.c
index 104cc3f..bb4a8fd 100755
--- a/src/io.c
+++ b/src/io.c
@@ -1,4 +1,4 @@
-/* $calcurse: io.c,v 1.61 2009/06/21 18:54:11 culot Exp $ */
+/* $calcurse: io.c,v 1.62 2009/06/23 08:11:07 culot Exp $ */
/*
* Calcurse - text-based organizer
@@ -502,7 +502,7 @@ ical_export_recur_apoints (FILE *stream)
date_sec2date_fmt (i->start, ICALDATETIMEFMT, ical_datetime);
(void)fprintf (stream, "BEGIN:VEVENT\n");
(void)fprintf (stream, "DTSTART:%s\n", ical_datetime);
- (void)fprintf (stream, "DURATION:P%ldS\n", i->dur);
+ (void)fprintf (stream, "DURATION:PT%ldS\n", i->dur);
(void)fprintf (stream, "RRULE:FREQ=%s;INTERVAL=%d",
ical_recur_type[i->rpt->type], i->rpt->freq);
@@ -605,7 +605,7 @@ ical_export_apoints (FILE *stream)
date_sec2date_fmt (i->start, ICALDATETIMEFMT, ical_datetime);
(void)fprintf (stream, "BEGIN:VEVENT\n");
(void)fprintf (stream, "DTSTART:%s\n", ical_datetime);
- (void)fprintf (stream, "DURATION:P%ldS\n", i->dur);
+ (void)fprintf (stream, "DURATION:PT%ldS\n", i->dur);
(void)fprintf (stream, "SUMMARY:%s\n", i->mesg);
if (i->state & APOINT_NOTIFY)
ical_export_valarm (stream);