From: Daniel Stenberg Date: Thu, 29 Jul 2004 07:19:27 +0000 (+0000) Subject: removed C++ comment to please picky source checkers X-Git-Tag: curl-7_12_1~34 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6d60ff6ea1047607459ce29016463e8d5313919c;p=thirdparty%2Fcurl.git removed C++ comment to please picky source checkers --- diff --git a/ares/windows_port.c b/ares/windows_port.c index ac6ffb2723..d8c9bda1c4 100644 --- a/ares/windows_port.c +++ b/ares/windows_port.c @@ -45,7 +45,9 @@ ares_gettimeofday(struct timeval *tv, struct timezone *tz) li.LowPart = ft.dwLowDateTime; li.HighPart = ft.dwHighDateTime; t = li.QuadPart; /* In 100-nanosecond intervals */ - //t -= EPOCHFILETIME; /* Offset to the Epoch time */ +#if 0 + t -= EPOCHFILETIME; /* Offset to the Epoch time */ +#endif t /= 10; /* In microseconds */ tv->tv_sec = (long)(t / 1000000); tv->tv_usec = (long)(t % 1000000);