PR/33633: Yoshito Komatsu: /sbin/fdisk does not work

Downgrade error getting heads to a warning.
This commit is contained in:
christos 2006-06-02 17:40:34 +00:00
parent fd8e3777c1
commit e5ea88eb01
1 changed files with 6 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: fdisk.c,v 1.100 2006/05/21 16:00:17 christos Exp $ */
/* $NetBSD: fdisk.c,v 1.101 2006/06/02 17:40:34 christos Exp $ */
/*
* Mach Operating System
@ -39,7 +39,7 @@
#include <sys/cdefs.h>
#ifndef lint
__RCSID("$NetBSD: fdisk.c,v 1.100 2006/05/21 16:00:17 christos Exp $");
__RCSID("$NetBSD: fdisk.c,v 1.101 2006/06/02 17:40:34 christos Exp $");
#endif /* not lint */
#define MBRPTYPENAMES
@ -1333,8 +1333,10 @@ intuit_translated_geometry(void)
break;
}
if (xheads == -1)
errx(1, "Cannot determine the number of heads");
if (xheads == -1) {
warnx("Cannot determine the number of heads");
return;
}
/* Estimate the number of cylinders. */
xcylinders = disklabel.d_secperunit / xheads / xsectors;