summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>1998-04-11 10:14:19 +0000
committerderaadt <deraadt@openbsd.org>1998-04-11 10:14:19 +0000
commiteb5dd92431c74d6e76df84624f089e079620f501 (patch)
tree86f832c6ac2c4f7050cc63e79d2d27df1b4a88f2
parentmake user enter root password during install phase (diff)
downloadwireguard-openbsd-eb5dd92431c74d6e76df84624f089e079620f501.tar.xz
wireguard-openbsd-eb5dd92431c74d6e76df84624f089e079620f501.zip
mention IDE, or people will get all confused
-rw-r--r--sbin/disklabel/editor.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sbin/disklabel/editor.c b/sbin/disklabel/editor.c
index d149bf17eca..1f2468f5d53 100644
--- a/sbin/disklabel/editor.c
+++ b/sbin/disklabel/editor.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: editor.c,v 1.32 1998/04/08 02:42:37 millert Exp $ */
+/* $OpenBSD: editor.c,v 1.33 1998/04/11 10:14:19 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.32 1998/04/08 02:42:37 millert Exp $";
+static char rcsid[] = "$OpenBSD: editor.c,v 1.33 1998/04/11 10:14:19 deraadt Exp $";
#endif /* not lint */
#include <sys/types.h>
@@ -1581,6 +1581,7 @@ getdisktype(lp, banner)
if (lp->d_type > DKMAXTYPES || lp->d_type == 0) {
puts(banner);
puts("Possible values are:");
+ printf("\"IDE\", ");
for (i = 1; i < DKMAXTYPES; i++) {
printf("\"%s\"", dktypenames[i]);
if (i < DKMAXTYPES - 1)