* vmsutil.c (vms_file_stats_name): Remove use of unsupported
        tm_gmtoff field in struct tm.
This commit is contained in:
Nick Clifton 2009-01-21 11:58:05 +00:00
parent 0c3b67369a
commit 58f9615ce4
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,9 @@
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.

View File

@ -238,7 +238,6 @@ vms_file_stats_name (const char *filename,
#else
struct stat buff;
struct tm *ts;
long gmtoff;
if ((stat (filename, &buff)) != 0)
return 1;
@ -246,8 +245,7 @@ vms_file_stats_name (const char *filename,
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;
}