Whamcloud - gitweb
LU-1346 libcfs: tcpip/time/type related cleanup
[fs/lustre-release.git] / libcfs / libcfs / winnt / winnt-native.c
index f3f48f7..e85722c 100644 (file)
@@ -206,7 +206,7 @@ int nanosleep(const struct timespec *rqtp, struct timespec *rmtp)
 }
 
 
-void cfs_gettimeofday(struct timeval *tv)
+void do_gettimeofday(struct timeval *tv)
 {
     LARGE_INTEGER Time;
 
@@ -218,7 +218,7 @@ void cfs_gettimeofday(struct timeval *tv)
 
 int gettimeofday(struct timeval *tv, void * tz)
 {
-    cfs_gettimeofday(tv);
+    do_gettimeofday(tv);
     return 0;
 }