summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sys/dev/softraid.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/softraid.c b/sys/dev/softraid.c
index c2212437b5d..49034019bce 100644
--- a/sys/dev/softraid.c
+++ b/sys/dev/softraid.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: softraid.c,v 1.71 2007/06/02 01:49:27 marco Exp $ */
+/* $OpenBSD: softraid.c,v 1.72 2007/06/02 01:52:25 marco Exp $ */
/*
* Copyright (c) 2007 Marco Peereboom <marco@peereboom.us>
*
@@ -825,11 +825,13 @@ sr_ioctl_createraid(struct sr_softc *sc, struct bioc_createraid *bc, int user)
goto unwind;
strlcpy(sd->sd_name, "RAID 1", sizeof(sd->sd_name));
break;
+#if 0
case 'c':
if (no_chunk != 1)
goto unwind;
strlcpy(sd->sd_name, "RAID C", sizeof(sd->sd_name));
break;
+#endif
default:
goto unwind;
}