https://bugs.winehq.org/show_bug.cgi?id=42925
Bug ID: 42925 Summary: strftime() truncates output inappropriately when %z is used Product: Wine Version: 2.7 Hardware: x86 OS: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: msvcrt Assignee: wine-bugs@winehq.org Reporter: mark+winebugs@carnildo.com Distribution: ---
strftime(buffer, 10000, "Diagnostic report generated at %c %z by version ", now);
On Windows (every version I've tested), this produces output similar to
Diagnostic report generated at 05/02/17 21:21:09 Pacific Daylight Time by version
On Wine, it instead produces
Diagnostic report generated at 05/02/17 21:21:09 Pacific Daylight Time
(note the truncation after the time zone).