diff options
author | Stuart Henderson <sthen@cvs.openbsd.org> | 2008-01-03 02:10:06 +0000 |
---|---|---|
committer | Stuart Henderson <sthen@cvs.openbsd.org> | 2008-01-03 02:10:06 +0000 |
commit | 07435a4f46c3908ec68c77848f5473c6c25e66fa (patch) | |
tree | 1248643820ab1262b71813d7c32a840f452681b1 /sbin | |
parent | 92e9ea437ff454ade88b0d9b8b30d91891fd0136 (diff) |
Remove text which is incorrect now that 'get bios geometry'
has been removed.
ok krw
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/disklabel/editor.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sbin/disklabel/editor.c b/sbin/disklabel/editor.c index edea308270f..3b40fd763fa 100644 --- a/sbin/disklabel/editor.c +++ b/sbin/disklabel/editor.c @@ -1,4 +1,4 @@ -/* $OpenBSD: editor.c,v 1.138 2008/01/01 18:20:02 krw Exp $ */ +/* $OpenBSD: editor.c,v 1.139 2008/01/03 02:10:05 sthen Exp $ */ /* * Copyright (c) 1997-2000 Todd C. Miller <Todd.Miller@courtesan.com> @@ -17,7 +17,7 @@ */ #ifndef lint -static char rcsid[] = "$OpenBSD: editor.c,v 1.138 2008/01/01 18:20:02 krw Exp $"; +static char rcsid[] = "$OpenBSD: editor.c,v 1.139 2008/01/03 02:10:05 sthen Exp $"; #endif /* not lint */ #include <sys/types.h> @@ -2195,10 +2195,10 @@ set_geometry(struct disklabel *lp, struct disklabel *dgp, struct disklabel *ugp, char *p) { if (p == NULL) { - p = getstring("[d]isk, [b]ios, or [u]ser geometry", + p = getstring("[d]isk or [u]ser geometry", "Enter 'd' to use the geometry based on what the disk " - "itself thinks it is, 'b' to use what the BIOS says," - "or 'u' to use the geometry that was found on in the label.", + "itself thinks it is, or 'u' to use the geometry that " + "was found in the label.", "d"); } if (p == NULL) { @@ -2241,7 +2241,7 @@ set_geometry(struct disklabel *lp, struct disklabel *dgp, } break; default: - fputs("You must enter either 'd', 'b', or 'u'.\n", stderr); + fputs("You must enter either 'd' or 'u'.\n", stderr); break; } } |