mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2026-05-22 10:37:35 +03:00
Consistently use parsable instead of parseable
This is a purely cosmetical change, to consistently prefer one of two (both acceptable) choises for the word parsable in documentation and code. I don't really care which to use, but acording to wiktionary https://en.wiktionary.org/wiki/parsable#English parsable is preferred. Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov> Closes #4682
This commit is contained in:
committed by
Brian Behlendorf
parent
9baaa7deae
commit
3491d6eb06
@@ -3852,7 +3852,7 @@ zpool_do_iostat(int argc, char **argv)
|
||||
zpool_list_t *list;
|
||||
boolean_t verbose = B_FALSE;
|
||||
boolean_t latency = B_FALSE, histo = B_FALSE;
|
||||
boolean_t queues = B_FALSE, parseable = B_FALSE, scripted = B_FALSE;
|
||||
boolean_t queues = B_FALSE, parsable = B_FALSE, scripted = B_FALSE;
|
||||
boolean_t omit_since_boot = B_FALSE;
|
||||
boolean_t guid = B_FALSE;
|
||||
boolean_t follow_links = B_FALSE;
|
||||
@@ -3884,7 +3884,7 @@ zpool_do_iostat(int argc, char **argv)
|
||||
verbose = B_TRUE;
|
||||
break;
|
||||
case 'p':
|
||||
parseable = B_TRUE;
|
||||
parsable = B_TRUE;
|
||||
break;
|
||||
case 'l':
|
||||
latency = B_TRUE;
|
||||
@@ -3914,7 +3914,7 @@ zpool_do_iostat(int argc, char **argv)
|
||||
argc -= optind;
|
||||
argv += optind;
|
||||
|
||||
cb.cb_literal = parseable;
|
||||
cb.cb_literal = parsable;
|
||||
cb.cb_scripted = scripted;
|
||||
|
||||
if (guid)
|
||||
|
||||
Reference in New Issue
Block a user