* vmsutil.c (vms_file_stats_name): Remove use of unsupported
tm_gmtoff field in struct tm.
+2009-01-21 Nick Clifton <nickc@redhat.com>
+
+ PR 9769
+ * vmsutil.c (vms_file_stats_name): Remove use of unsupported
+ tm_gmtoff field in struct tm.
+
2009-01-21 Alan Modra <amodra@bigpond.net.au>
* elf32-spu.h (struct spu_elf_params): Add non_ia_text.
#else
struct stat buff;
struct tm *ts;
- long gmtoff;
if ((stat (filename, &buff)) != 0)
return 1;
if (cdt)
{
ts = localtime (&buff.st_mtime);
- gmtoff = ts->tm_gmtoff;
- *cdt = (long long) (((buff.st_mtim.tv_sec + gmtoff) * VMS_GRANULARITY_FACTOR)
+ *cdt = (long long) ((buff.st_mtim.tv_sec * VMS_GRANULARITY_FACTOR)
+ (buff.st_mtim.tv_nsec / 100))
+ VMS_EPOCH_OFFSET;
}