diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-12-24 01:33:39 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-12-24 01:33:39 +0000 |
commit | 09eefd2776748d8feba929ed6787ba4ecb478b8d (patch) | |
tree | 2a3d4c41e2119414c6c55cbaf69178bb9dfb562f /sys/scsi | |
parent | 54bf7132d3b23ce5d59b66b48364f75c8631b03b (diff) |
deal with the 2340 lie in the right place, i think
Diffstat (limited to 'sys/scsi')
-rw-r--r-- | sys/scsi/cd.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/scsi/cd.c b/sys/scsi/cd.c index 82a995b0a93..02e8273e751 100644 --- a/sys/scsi/cd.c +++ b/sys/scsi/cd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cd.c,v 1.18 1996/12/11 19:08:14 deraadt Exp $ */ +/* $OpenBSD: cd.c,v 1.19 1996/12/24 01:33:33 deraadt Exp $ */ /* $NetBSD: cd.c,v 1.92 1996/05/05 19:52:50 christos Exp $ */ /* @@ -1053,6 +1053,8 @@ cdgetdisklabel(cd) bzero(cd->sc_dk.dk_cpulabel, sizeof(struct cpu_disklabel)); lp->d_secsize = cd->params.blksize; + if (lp->d_secsize > 2048) + lp->d_secsize = 2048; lp->d_ntracks = 1; lp->d_nsectors = 100; lp->d_ncylinders = (cd->params.disksize / 100) + 1; |