From 792311228d8f4cb26262c279e310b0344d735bd8 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sat, 5 Mar 2016 12:57:06 +0200 Subject: [PATCH] Fix mbox files produced by movemail on MS-Windows * lib-src/movemail.c (mbx_delimit_begin): Use portable strftime format specifiers, as at least the MS-Windows version of strftime doesn't support %e and %T. --- lib-src/movemail.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib-src/movemail.c b/lib-src/movemail.c index eb1962a8f6b..efa0219e587 100644 --- a/lib-src/movemail.c +++ b/lib-src/movemail.c @@ -809,7 +809,7 @@ mbx_delimit_begin (FILE *mbf) char fromline[100]; if (! strftime (fromline, sizeof fromline, - "From movemail %a %b %e %T %Y\n", ltime)) + "From movemail %a %b %d %H:%M:%S %Y\n", ltime)) { errno = EOVERFLOW; return false; -- 2.39.5