mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-14 10:09:48 +00:00
Use the correct state name for unavailable pools in zpool list
This corrects inconsitencies between zpool list and zpool status which are both described as displaying the pool <state> however zpool list would use this hardcoded FAULTED instead of the correct UNAVAIL. MFC after: 1 month
This commit is contained in:
parent
9cb25d2d4c
commit
7234ef453b
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=276446
@ -256,7 +256,8 @@ zpool_get_prop(zpool_handle_t *zhp, zpool_prop_t prop, char *buf, size_t len,
|
||||
break;
|
||||
|
||||
case ZPOOL_PROP_HEALTH:
|
||||
(void) strlcpy(buf, "FAULTED", len);
|
||||
(void) strlcpy(buf,
|
||||
zpool_pool_state_to_name(POOL_STATE_UNAVAIL), len);
|
||||
break;
|
||||
|
||||
case ZPOOL_PROP_GUID:
|
||||
|
Loading…
Reference in New Issue
Block a user