From 7d7524e57db3db1010c7896a5f4a88e95c4015d3 Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Thu, 28 Mar 2002 04:56:06 +0000 Subject: * times.cc (gettimeofday): Revert to setting timezone info if tz != NULL. --- winsup/cygwin/times.cc | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'winsup/cygwin/times.cc') diff --git a/winsup/cygwin/times.cc b/winsup/cygwin/times.cc index b7308bf02..1ad676453 100644 --- a/winsup/cygwin/times.cc +++ b/winsup/cygwin/times.cc @@ -155,12 +155,24 @@ extern "C" int gettimeofday(struct timeval *tv, struct timezone *tz) { static hires gtod; + static tzflag; LONGLONG now = gtod.usecs (false); if (now == (LONGLONG) -1) return -1; tv->tv_sec = now / 1000000; tv->tv_usec = now % 1000000; + + if (tz != NULL) + { + if (!tzflag) { + tzset(); + tzflag = 1; + } + tz->tz_minuteswest = _timezone / 60; + tz->tz_dsttime = _daylight; + } + return 0; } -- cgit v1.2.3