mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 09:36:41 -04:00
The offical GNOME 3.28 release notes can be found at https://help.gnome.org/misc/release-notes/3.28/ Thanks to Antoine Brodin for running the exp-runs. PR: 229761
11 lines
460 B
C
11 lines
460 B
C
--- imap/xcal.c.orig 2018-04-10 19:36:14 UTC
|
|
+++ imap/xcal.c
|
|
@@ -114,7 +114,7 @@ const char *icaltime_as_iso_string(const struct icalti
|
|
const char *fmt;
|
|
|
|
if (tt.is_date) fmt = "%04d-%02d-%02d";
|
|
- else if (tt.is_utc) fmt = "%04d-%02d-%02dT%02d:%02d:%02dZ";
|
|
+ else if (icaltime_is_utc(tt)) fmt = "%04d-%02d-%02dT%02d:%02d:%02dZ";
|
|
else fmt = "%04d-%02d-%02dT%02d:%02d:%02d";
|
|
|
|
snprintf(str, sizeof(str), fmt, tt.year, tt.month, tt.day,
|