Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 27 Nov 2008 06:21:04 +0000 (UTC)
From:      Tim Kientzle <kientzle@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r185361 - head/sys/fs/cd9660
Message-ID:  <200811270621.mAR6L4cb078108@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kientzle
Date: Thu Nov 27 06:21:04 2008
New Revision: 185361
URL: http://svn.freebsd.org/changeset/base/185361

Log:
  The timezone byte is a signed value, treat it as such.
  Otherwise, time zone information for time zones west of
  GMT gets discarded.
  
  PR:		kern/128934
  Submitted by:	J.R. Oldroyd
  MFC after:	4 days

Modified:
  head/sys/fs/cd9660/cd9660_node.c

Modified: head/sys/fs/cd9660/cd9660_node.c
==============================================================================
--- head/sys/fs/cd9660/cd9660_node.c	Thu Nov 27 05:49:52 2008	(r185360)
+++ head/sys/fs/cd9660/cd9660_node.c	Thu Nov 27 06:21:04 2008	(r185361)
@@ -241,7 +241,7 @@ cd9660_tstamp_conv7(pi,pu,ftype)
 	minute = pi[4];
 	second = pi[5];
 	if(ftype != ISO_FTYPE_HIGH_SIERRA)
-		tz = pi[6];
+		tz = ((signed char *)pi)[6]; /* Timezone value is signed. */
 	else
 		/* original high sierra misses timezone data */
 		tz = 0;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200811270621.mAR6L4cb078108>