From: Eli Zaretskii Date: Sat, 5 Mar 2016 10:57:06 +0000 (+0200) Subject: Fix mbox files produced by movemail on MS-Windows X-Git-Tag: emacs-25.0.93~132 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7923112;p=emacs.git 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. --- 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;