summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1997-10-16 10:40:51 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1997-10-16 10:40:51 +0000
commitaf040f1f9c0b6a5928d47ec7a396306e29de757c (patch)
tree8ea1eacb7eb5706e8edd449b74a61b731b08d92a
parent56da29cc1652edc5bb1942e9c0aa109fd0b7bd97 (diff)
make M more visible
-rw-r--r--sbin/disklabel/editor.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/disklabel/editor.c b/sbin/disklabel/editor.c
index d30afe20ed0..1a990051c2e 100644
--- a/sbin/disklabel/editor.c
+++ b/sbin/disklabel/editor.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: editor.c,v 1.14 1997/10/16 10:40:10 deraadt Exp $ */
+/* $OpenBSD: editor.c,v 1.15 1997/10/16 10:40:50 deraadt Exp $ */
/*
* Copyright (c) 1997 Todd C. Miller <Todd.Miller@courtesan.com>
@@ -31,7 +31,7 @@
*/
#ifndef lint
-static char rcsid[] = "$OpenBSD: editor.c,v 1.14 1997/10/16 10:40:10 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: editor.c,v 1.15 1997/10/16 10:40:50 deraadt Exp $";
#endif /* not lint */
#include <sys/types.h>
@@ -130,6 +130,7 @@ editor(lp, f)
case '?':
puts("Available commands:\n");
puts("\tp [suffix] - print label.");
+ puts("\tM - show entire OpenBSD man page for disklabel.");
puts("\te - edit drive parameters.");
puts("\ta [part] - add new partition.");
puts("\tc [part] - change partition size.");
@@ -140,7 +141,6 @@ editor(lp, f)
puts("\tw - write label to disk.");
puts("\tq - quit and save changes.");
puts("\tx - exit without saving changes.");
- puts("\tM - show entire OpenBSD man page for disklabel.");
puts("\t? - this message.\n");
puts("Numeric parameters may use suffixes to indicate units:\n\t'b' for bytes, 'c' for cylinders, 'k' for kilobytes, 'm' for megabytes,\n\t'g' for gigabytes or no suffix for blocks (usually 512 bytes).\n\tNon-block units will be rounded to the nearest cylinder.\nThe (optional) argument to p[rint] may be one of the aforementioned units.\n");
break;