Don't assume all OS's have tm_gmtoff

This commit is contained in:
rocky
2005-02-23 00:43:05 +00:00
parent a37cfc0ba4
commit 0661cbd0b6

View File

@@ -1,5 +1,5 @@
/*
$Id: iso9660.c,v 1.9 2005/02/22 10:42:50 rocky Exp $
$Id: iso9660.c,v 1.10 2005/02/23 00:43:05 rocky Exp $
Copyright (C) 2000 Herbert Valerio Riedel <hvr@gnu.org>
Copyright (C) 2003, 2004, 2005 Rocky Bernstein <rocky@panix.com>
@@ -48,7 +48,7 @@ const char ISO_STANDARD_ID[] = {'C', 'D', '0', '0', '1'};
#include <errno.h>
#endif
static const char _rcsid[] = "$Id: iso9660.c,v 1.9 2005/02/22 10:42:50 rocky Exp $";
static const char _rcsid[] = "$Id: iso9660.c,v 1.10 2005/02/23 00:43:05 rocky Exp $";
/* Variables to hold debugger-helping enumerations */
enum iso_enum1_s iso_enums1;
@@ -135,12 +135,12 @@ iso9660_get_dtime (const iso9660_dtime_t *idr_date, bool b_localtime,
p_tm->tm_hour = idr_date->dt_hour;
p_tm->tm_min = idr_date->dt_minute;
p_tm->tm_sec = idr_date->dt_second;
#ifdef HAVE_TM_GMTOFF
p_tm->tm_gmtoff = - idr_date->dt_gmtoff * (15 * 60);
#endif
p_tm->tm_isdst = -1; /* information not available */
{
time_t t;
struct tm *p_temp_tm;
@@ -181,7 +181,9 @@ iso9660_get_ltime (const iso9660_ltime_t *p_ldate,
set_ltime_field(tm_min, lt_minute, 0);
set_ltime_field(tm_sec, lt_second, 0);
p_tm->tm_isdst= -1; /* information not available */
#ifdef HAVE_TM_GMTOFF
p_tm->tm_gmtoff = - p_ldate->lt_gmtoff * (15 * 60);
#endif
/* Recompute tm_wday and tm_yday via mktime. */
{