diff options
author | Marco Peereboom <marco@cvs.openbsd.org> | 2007-06-02 01:52:26 +0000 |
---|---|---|
committer | Marco Peereboom <marco@cvs.openbsd.org> | 2007-06-02 01:52:26 +0000 |
commit | 8e80391b08fbf1b0c765d25887e74d911b56b8f7 (patch) | |
tree | 0514ff42f3fb0534d0587579110c1e98d195134a /sys/dev/softraid.c | |
parent | 35fdf11bb41c988ae94871f36b927554fbea0c2f (diff) |
Disable crypto until we figure out proper key management and other stuff
only tedu understands.
Diffstat (limited to 'sys/dev/softraid.c')
-rw-r--r-- | sys/dev/softraid.c | 4 |
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; } |