]> git.ipfire.org Git - thirdparty/libarchive.git/commitdiff
Fix a name of timezone global variable for Borland.
authorMichihiro NAKAJIMA <ggcueroad@gmail.com>
Sun, 15 May 2011 04:09:14 +0000 (00:09 -0400)
committerMichihiro NAKAJIMA <ggcueroad@gmail.com>
Sun, 15 May 2011 04:09:14 +0000 (00:09 -0400)
SVN-Revision: 3326

libarchive/archive_write_set_format_iso9660.c

index b6139a2259d7b448895dbcfccc8a8889935061ef..6cb8eb9f4bb423d6fbcdd286694a8ea512035e44 100644 (file)
@@ -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;