summaryrefslogtreecommitdiff
path: root/sbin/disklabel
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2011-10-06 21:16:02 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2011-10-06 21:16:02 +0000
commit7db1a26af32e1f2b0d85ebf770b964dfd9eb434f (patch)
treeb6af0fd00dd726d2f0dfdd15c59dc9e0aa0248d2 /sbin/disklabel
parentef935aadd541a58b94633fc0d59639843537e1aa (diff)
mark ccd(4) deprecated in a few more places
Diffstat (limited to 'sbin/disklabel')
-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 3a4be86240e..8c2bfda0d18 100644
--- a/sbin/disklabel/editor.c
+++ b/sbin/disklabel/editor.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: editor.c,v 1.258 2011/07/05 21:39:08 krw Exp $ */
+/* $OpenBSD: editor.c,v 1.259 2011/10/06 21:16:01 deraadt Exp $ */
/*
* Copyright (c) 1997-2000 Todd C. Miller <Todd.Miller@courtesan.com>
@@ -1534,7 +1534,7 @@ getdisktype(struct disklabel *lp, char *banner, char *dev)
{ "xd", "SMD" },
{ "xy", "SMD" },
{ "hd", "HP-IB" },
- { "ccd", "CCD" },
+ { "ccd", "CCD" }, /* deprecated */
{ "vnd", "VND" },
{ "svnd", "VND" },
{ NULL, NULL }
@@ -1568,7 +1568,7 @@ getdisktype(struct disklabel *lp, char *banner, char *dev)
for (;;) {
s = getstring("Disk type",
"What kind of disk is this? Usually SCSI, IDE, "
- "ESDI, CCD, ST506, or floppy.", def);
+ "ESDI, ST506, or floppy.", def);
if (s == NULL)
continue;
if (strcasecmp(s, "IDE") == 0) {