summaryrefslogtreecommitdiffstats
path: root/sys/fs/cd9660
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>1995-02-21 18:41:30 +0000
committerbde <bde@FreeBSD.org>1995-02-21 18:41:30 +0000
commit69d7415f4fb2dc682b312348895fd3fc69646cb6 (patch)
tree7be01d6dee9cbb2117f320c3b284d3a31fc6e63c /sys/fs/cd9660
parent3de20526b6e4b648c9a7c3cfc6c90e231beb4c79 (diff)
downloadFreeBSD-src-69d7415f4fb2dc682b312348895fd3fc69646cb6.zip
FreeBSD-src-69d7415f4fb2dc682b312348895fd3fc69646cb6.tar.gz
Obtained from: memories of 1.1.5
Fix the sign of the timezone offset again.
Diffstat (limited to 'sys/fs/cd9660')
-rw-r--r--sys/fs/cd9660/cd9660_node.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/fs/cd9660/cd9660_node.c b/sys/fs/cd9660/cd9660_node.c
index 137c091..080f342 100644
--- a/sys/fs/cd9660/cd9660_node.c
+++ b/sys/fs/cd9660/cd9660_node.c
@@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)cd9660_node.c 8.2 (Berkeley) 1/23/94
- * $Id: cd9660_node.c,v 1.7 1994/10/06 21:06:17 davidg Exp $
+ * $Id: cd9660_node.c,v 1.8 1995/01/16 17:03:24 joerg Exp $
*/
#include <sys/param.h>
@@ -598,7 +598,7 @@ enum ISO_FTYPE ftype;
/* timezone offset is unreliable on some disks */
if (-48 <= tz && tz <= 52)
- crtime += tz * 15 * 60;
+ crtime -= tz * 15 * 60;
}
pu->ts_sec = crtime;
pu->ts_nsec = 0;
OpenPOWER on IntegriCloud