summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorstsp <stsp@openbsd.org>2021-02-08 20:07:04 +0000
committerstsp <stsp@openbsd.org>2021-02-08 20:07:04 +0000
commita25213920c0f811bae3f98a7cb694f77699a1524 (patch)
treebd96cd26bd2a9bbb548016c5ff77f1e9c68b8b00
parentadd RAID 1C to the list of supported softraid(4) disciplines (diff)
downloadwireguard-openbsd-a25213920c0f811bae3f98a7cb694f77699a1524.tar.xz
wireguard-openbsd-a25213920c0f811bae3f98a7cb694f77699a1524.zip
change discipline name from "RAID1C" to "RAID 1C" to match the man pages
-rw-r--r--sys/dev/softraid_raid1c.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/softraid_raid1c.c b/sys/dev/softraid_raid1c.c
index 1040b7d47db..2d851110c73 100644
--- a/sys/dev/softraid_raid1c.c
+++ b/sys/dev/softraid_raid1c.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: softraid_raid1c.c,v 1.1 2021/02/08 11:21:53 stsp Exp $ */
+/* $OpenBSD: softraid_raid1c.c,v 1.2 2021/02/08 20:07:04 stsp Exp $ */
/*
* Copyright (c) 2007 Marco Peereboom <marco@peereboom.us>
* Copyright (c) 2008 Hans-Joerg Hoexer <hshoexer@openbsd.org>
@@ -88,7 +88,7 @@ sr_raid1c_discipline_init(struct sr_discipline *sd)
/* Fill out discipline members. */
sd->sd_wu_size = sizeof(struct sr_crypto_wu);
sd->sd_type = SR_MD_RAID1C;
- strlcpy(sd->sd_name, "RAID1C", sizeof(sd->sd_name));
+ strlcpy(sd->sd_name, "RAID 1C", sizeof(sd->sd_name));
sd->sd_capabilities = SR_CAP_SYSTEM_DISK | SR_CAP_AUTO_ASSEMBLE |
SR_CAP_REBUILD | SR_CAP_REDUNDANT;
sd->sd_max_wu = SR_RAID1C_NOWU;