aboutsummaryrefslogtreecommitdiffstats
path: root/src/song_print.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/song_print.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/song_print.c b/src/song_print.c
index 831688483..034c1d013 100644
--- a/src/song_print.c
+++ b/src/song_print.c
@@ -79,7 +79,13 @@ song_print_info(struct client *client, struct song *song)
if (tm2 != NULL) {
char timestamp[32];
- strftime(timestamp, sizeof(timestamp), "%FT%TZ", tm2);
+ strftime(timestamp, sizeof(timestamp),
+#ifdef G_OS_WIN32
+ "%Y-%m-%dT%H:%M:%SZ",
+#else
+ "%FT%TZ",
+#endif
+ tm2);
client_printf(client, "Last-Modified: %s\n",
timestamp);
}