mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-25 21:41:47 +08:00
PR 9769
* vmsutil.c (vms_file_stats_name): Remove use of unsupported tm_gmtoff field in struct tm.
This commit is contained in:
@ -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.
|
||||
|
@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user