summaryrefslogtreecommitdiff
path: root/windows_port.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-07-29 07:19:27 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-07-29 07:19:27 +0000
commit3d0de826a5506bd828d9653eb44271005420851d (patch)
tree61baf4c799c921f2311b7bc61eed7b27948848df /windows_port.c
parent0b6c1345eb3bcfd2529e96aedf82b31e0f89b345 (diff)
downloadc-ares-3d0de826a5506bd828d9653eb44271005420851d.tar.gz
c-ares-3d0de826a5506bd828d9653eb44271005420851d.tar.bz2
c-ares-3d0de826a5506bd828d9653eb44271005420851d.zip
removed C++ comment to please picky source checkers
Diffstat (limited to 'windows_port.c')
-rw-r--r--windows_port.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/windows_port.c b/windows_port.c
index ac6ffb2..d8c9bda 100644
--- a/windows_port.c
+++ b/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);