Commit d4e2b058 authored by Jeff Smith's avatar Jeff Smith Committed by Alexandre Julliard

ucrtbase: Strftime returns 4-digit timezone for %z.

parent f63138d0
...@@ -1033,6 +1033,30 @@ static inline BOOL strftime_time(char *str, MSVCRT_size_t *pos, MSVCRT_size_t ma ...@@ -1033,6 +1033,30 @@ static inline BOOL strftime_time(char *str, MSVCRT_size_t *pos, MSVCRT_size_t ma
return TRUE; return TRUE;
} }
static inline BOOL strftime_tzdiff(char *str, MSVCRT_size_t *pos, MSVCRT_size_t max, BOOL is_dst)
{
MSVCRT_long tz = MSVCRT___timezone + (is_dst ? MSVCRT__dstbias : 0);
MSVCRT_size_t len;
char sign;
if(tz < 0) {
sign = '+';
tz = -tz;
}else {
sign = '-';
}
len = MSVCRT__snprintf(str+*pos, max-*pos, "%c%02u%02u", sign, tz/60/60, tz/60%60);
if(len == -1) {
*str = 0;
*MSVCRT__errno() = MSVCRT_ERANGE;
return FALSE;
}
*pos += len;
return TRUE;
}
static inline BOOL strftime_str(char *str, MSVCRT_size_t *pos, MSVCRT_size_t max, char *src) static inline BOOL strftime_str(char *str, MSVCRT_size_t *pos, MSVCRT_size_t max, char *src)
{ {
MSVCRT_size_t len = strlen(src); MSVCRT_size_t len = strlen(src);
...@@ -1300,6 +1324,12 @@ static MSVCRT_size_t strftime_helper(char *str, MSVCRT_size_t max, const char *f ...@@ -1300,6 +1324,12 @@ static MSVCRT_size_t strftime_helper(char *str, MSVCRT_size_t max, const char *f
return 0; return 0;
break; break;
case 'z': case 'z':
#if _MSVCR_VER>=140
MSVCRT__tzset();
if(!strftime_tzdiff(str, &ret, max, mstm->tm_isdst))
return 0;
break;
#endif
case 'Z': case 'Z':
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))
......
...@@ -1001,6 +1001,12 @@ static void test_strftime(void) ...@@ -1001,6 +1001,12 @@ static void test_strftime(void)
todo_wine ok(retA == 2, "expected 2, got %d\n", (int)retA); todo_wine ok(retA == 2, "expected 2, got %d\n", (int)retA);
todo_wine ok(!strcmp(bufA, "53"), "got %s\n", bufA); todo_wine ok(!strcmp(bufA, "53"), "got %s\n", bufA);
retA = p_strftime(bufA, sizeof(bufA), "%z", &tm2);
ok(retA == 5, "expected 5, got %d\n", (int)retA);
ok((bufA[0] == '+' || bufA[0] == '-') &&
isdigit(bufA[1]) && isdigit(bufA[2]) &&
isdigit(bufA[3]) && isdigit(bufA[4]), "got %s\n", bufA);
for(i=0; i<14; i++) for(i=0; i<14; i++)
{ {
__time32_t t = (365*2 + i - 7) * 24 * 60 * 60; __time32_t t = (365*2 + i - 7) * 24 * 60 * 60;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment