msvcrt: Fix '%z' format handling in strftime.
Signed-off-by: Piotr Caban <piotr@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
abad9308e8
commit
5823e5b914
@ -1204,7 +1204,7 @@ static MSVCRT_size_t strftime_helper(char *str, MSVCRT_size_t max, const char *f
|
|||||||
MSVCRT__tzset();
|
MSVCRT__tzset();
|
||||||
if(MSVCRT__get_tzname(&tmp, str+ret, max-ret, mstm->tm_isdst ? 1 : 0))
|
if(MSVCRT__get_tzname(&tmp, str+ret, max-ret, mstm->tm_isdst ? 1 : 0))
|
||||||
return 0;
|
return 0;
|
||||||
ret += tmp;
|
ret += tmp-1;
|
||||||
break;
|
break;
|
||||||
case 'U':
|
case 'U':
|
||||||
case 'W':
|
case 'W':
|
||||||
|
Loading…
x
Reference in New Issue
Block a user