Remove bfd/.
[deliverable/binutils-gdb.git] / bfd / vmsutil.c
index 83c4609df419d6e246be644609b41ba5eca64bd0..ff4383a86e2ff0643df25d393e0dc0cdffb666a1 100644 (file)
@@ -237,16 +237,13 @@ vms_file_stats_name (const char *filename,
   return 0;
 #else
   struct stat buff;
-  struct tm *ts;
 
   if ((stat (filename, &buff)) != 0)
      return 1;
 
   if (cdt)
     {
-      ts = localtime (&buff.st_mtime);
-      *cdt = (long long) ((buff.st_mtim.tv_sec * VMS_GRANULARITY_FACTOR)
-                          + (buff.st_mtim.tv_nsec / 100))
+      *cdt = (long long) (buff.st_mtime * VMS_GRANULARITY_FACTOR)
                          + VMS_EPOCH_OFFSET;
     }
 
This page took 0.02297 seconds and 4 git commands to generate.