diff options
author | 2014-01-18 09:01:01 +0000 | |
---|---|---|
committer | 2014-01-18 09:01:01 +0000 | |
commit | 0db2cd3920034c5cf97c92f4fdef248ade54fbcd (patch) | |
tree | ab78b973ffda96b81a09d9c247fc554433dcaa43 /sbin/bioctl/bioctl.c | |
parent | Cope with slightly broken NAME sections in man(7) pages (diff) | |
download | wireguard-openbsd-0db2cd3920034c5cf97c92f4fdef248ade54fbcd.tar.xz wireguard-openbsd-0db2cd3920034c5cf97c92f4fdef248ade54fbcd.zip |
Remove the RAID 4 discipline from softraid. Anyone sensible would use RAID
5 instead of RAID 4, assuming both were functional.
Discussed with krw@
Diffstat (limited to 'sbin/bioctl/bioctl.c')
-rw-r--r-- | sbin/bioctl/bioctl.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sbin/bioctl/bioctl.c b/sbin/bioctl/bioctl.c index 8acfa61be6a..fa6784f753a 100644 --- a/sbin/bioctl/bioctl.c +++ b/sbin/bioctl/bioctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bioctl.c,v 1.117 2013/11/22 04:12:46 deraadt Exp $ */ +/* $OpenBSD: bioctl.c,v 1.118 2014/01/18 09:01:01 jsing Exp $ */ /* * Copyright (c) 2004, 2005 Marco Peereboom @@ -851,7 +851,6 @@ bio_createraid(u_int16_t level, char *dev_list, char *key_disk) case 1: min_disks = 2; break; - case 4: case 5: min_disks = 3; break; |