From: Michihiro NAKAJIMA Date: Sun, 15 May 2011 04:09:14 +0000 (-0400) Subject: Fix a name of timezone global variable for Borland. X-Git-Tag: v3.0.0a~361 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fc8efe4da9b71e47e648a9a69eb6385649e336c3;p=thirdparty%2Flibarchive.git Fix a name of timezone global variable for Borland. SVN-Revision: 3326 --- diff --git a/libarchive/archive_write_set_format_iso9660.c b/libarchive/archive_write_set_format_iso9660.c index b6139a225..6cb8eb9f4 100644 --- a/libarchive/archive_write_set_format_iso9660.c +++ b/libarchive/archive_write_set_format_iso9660.c @@ -2375,7 +2375,7 @@ get_gmoffset(struct tm *tm) #if defined(HAVE__GET_TIMEZONE) _get_timezone(&offset); -#elif defined(__CYGWIN__) || defined(__MINGW32__) +#elif defined(__CYGWIN__) || defined(__MINGW32__) || defined(__BORLANDC__) offset = _timezone; #else offset = timezone;