Index: src/xstd/xport.cc =================================================================== RCS file: /usr/local/CVS/polygraph/src/xstd/xport.cc,v retrieving revision 1.1.1.1.2.2 diff -u -r1.1.1.1.2.2 xport.cc --- src/xstd/xport.cc 2000/06/24 19:56:39 1.1.1.1.2.2 +++ src/xstd/xport.cc 2001/01/15 23:08:23 @@ -33,9 +33,7 @@ time_t fake_timegm(struct tm *t) { const time_t res = mktime(t); -#if defined(HAVE_ALTZONE) - return res - altzone; // Solaris -#elif defined(HAVE_TM_GMTOFF) +#if defined(HAVE_TM_GMTOFF) const struct tm *local = localtime(&res); return res + local->tm_gmtoff; #elif defined(HAVE_TIMEZONE)