1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-28 01:06:17 +00:00

Cosmetic: make it less confusing when displaying RAID 1 level, that might

be 1+0 as well.

PR:		ports/151132
Submitted by:	az
Approved by:	maintainer (timeout > 14d)
This commit is contained in:
Andrej Zverev 2010-11-04 14:25:38 +00:00
parent 8c33009a73
commit dca36ef9e0
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=264080
2 changed files with 12 additions and 0 deletions

View File

@ -7,6 +7,7 @@
PORTNAME= cciss_vol_status
PORTVERSION= 1.06
PORTREVISION= 1
CATEGORIES= sysutils
MASTER_SITES= SF/cciss/${PORTNAME}

View File

@ -0,0 +1,11 @@
--- cciss_vol_status.c.orig 2010-10-01 11:01:29.000000000 +0400
+++ cciss_vol_status.c 2010-10-01 11:01:43.000000000 +0400
@@ -697,7 +697,7 @@
break;
case 1: sprintf(raid_level, "RAID 4");
break;
- case 2: sprintf(raid_level, "RAID 1");
+ case 2: sprintf(raid_level, "RAID 1(1+0)");
break;
case 3: sprintf(raid_level, "RAID 5");
break;