SystemTimeToFileTime(&epoch, &temp);
- i1.LowPart = t->absolute.dwLowDateTime;
- i1.HighPart = t->absolute.dwHighDateTime;
+ i1.LowPart = temp.dwLowDateTime;
+ i1.HighPart = temp.dwHighDateTime;
i1.QuadPart += (unsigned __int64)nanoseconds/100;
i1.QuadPart += (unsigned __int64)seconds*10000000;
REQUIRE(buf != NULL);
REQUIRE(t != NULL);
- p = strptime(buf, "%a, %d %b %Y %H:%M:%S %Z", &t_tm);
+ p = strptime(buf, "%a, %d %b %Y %H:%M:%S", &t_tm);
if (p == NULL)
return (ISC_R_UNEXPECTED);
when = timetfromtm(&t_tm);