From 09eefd2776748d8feba929ed6787ba4ecb478b8d Mon Sep 17 00:00:00 2001 From: Theo de Raadt Date: Tue, 24 Dec 1996 01:33:39 +0000 Subject: deal with the 2340 lie in the right place, i think --- sys/scsi/cd.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'sys/scsi') 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; -- cgit v1.2.3