Date: Wed, 28 Jan 2009 19:09:49 +0000 (UTC) From: Warner Losh <imp@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r187840 - head/sys/fs/cd9660 Message-ID: <200901281909.n0SJ9nog029760@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: imp Date: Wed Jan 28 19:09:49 2009 New Revision: 187840 URL: http://svn.freebsd.org/changeset/base/187840 Log: Use the correct field name for the size of the sierra_id. While this is the same size as id, and is unlikely to change, it seems better to use the correct field here. There's no difference in the generated code. Modified: head/sys/fs/cd9660/cd9660_vfsops.c Modified: head/sys/fs/cd9660/cd9660_vfsops.c ============================================================================== --- head/sys/fs/cd9660/cd9660_vfsops.c Wed Jan 28 19:05:18 2009 (r187839) +++ head/sys/fs/cd9660/cd9660_vfsops.c Wed Jan 28 19:09:49 2009 (r187840) @@ -264,7 +264,7 @@ iso_mountfs(devvp, mp) vdp = (struct iso_volume_descriptor *)bp->b_data; if (bcmp (vdp->id, ISO_STANDARD_ID, sizeof vdp->id) != 0) { if (bcmp (vdp->id_sierra, ISO_SIERRA_ID, - sizeof vdp->id) != 0) { + sizeof vdp->id_sierra) != 0) { error = EINVAL; goto out; } else
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200901281909.n0SJ9nog029760>