diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2006-01-22 00:40:03 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2006-01-22 00:40:03 +0000 |
commit | 22c9c3850c0937b005b1a8552095891e59df87c2 (patch) | |
tree | e3633a0c9690c06d26a567eb2f2c6e937c26db61 /sys/isofs | |
parent | 2122cf052cb864c6d41447b67783028f0ee3a145 (diff) |
b_cylin -> b_cylinder; no functional change.
Diffstat (limited to 'sys/isofs')
-rw-r--r-- | sys/isofs/cd9660/cd9660_vfsops.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sys/isofs/cd9660/cd9660_vfsops.c b/sys/isofs/cd9660/cd9660_vfsops.c index 9237848f7f0..20c0f381537 100644 --- a/sys/isofs/cd9660/cd9660_vfsops.c +++ b/sys/isofs/cd9660/cd9660_vfsops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cd9660_vfsops.c,v 1.37 2005/11/30 10:35:07 pedro Exp $ */ +/* $OpenBSD: cd9660_vfsops.c,v 1.38 2006/01/22 00:40:02 miod Exp $ */ /* $NetBSD: cd9660_vfsops.c,v 1.26 1997/06/13 15:38:58 pk Exp $ */ /*- @@ -55,8 +55,6 @@ #include <sys/malloc.h> #include <sys/stat.h> -#define b_cylin b_resid - #include <isofs/cd9660/iso.h> #include <isofs/cd9660/cd9660_extern.h> #include <isofs/cd9660/iso_rrip.h> @@ -466,7 +464,7 @@ iso_disklabelspoof(dev, strat, lp) bp->b_blkno = iso_blknum * btodb(ISO_DEFAULT_BLOCK_SIZE); bp->b_bcount = ISO_DEFAULT_BLOCK_SIZE; bp->b_flags = B_BUSY | B_READ; - bp->b_cylin = bp->b_blkno / lp->d_secpercyl; + bp->b_cylinder = bp->b_blkno / lp->d_secpercyl; /*printf("d_secsize %d iso_blknum %d b_blkno %d bcount %d\n", lp->d_secsize, iso_blknum, bp->b_blkno, bp->b_bcount);*/ |