]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
removed C++ comment to please picky source checkers
authorDaniel Stenberg <daniel@haxx.se>
Thu, 29 Jul 2004 07:19:27 +0000 (07:19 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 29 Jul 2004 07:19:27 +0000 (07:19 +0000)
ares/windows_port.c

index ac6ffb27236ade3719b9288cc95d98c3c080e55a..d8c9bda1c4e062251c52a72997db8d4376515cc1 100644 (file)
@@ -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);