diff options
author | Christer Ekholm <[email protected]> | 2016-05-23 19:20:42 +0200 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2016-05-23 10:20:42 -0700 |
commit | 3491d6eb06c3e2e6f337bd57b6137ccff4b8c077 (patch) | |
tree | b65cd0abf60061690e08f6969f8041c3c3735a53 /cmd | |
parent | 9baaa7deae45c8556dfd79b2011234da5cb37b3a (diff) |
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 <[email protected]>
Closes #4682
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/zdb/zdb.c | 2 | ||||
-rw-r--r-- | cmd/zpool/zpool_main.c | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/cmd/zdb/zdb.c b/cmd/zdb/zdb.c index cbc98d24c..3311a6e6f 100644 --- a/cmd/zdb/zdb.c +++ b/cmd/zdb/zdb.c @@ -172,7 +172,7 @@ usage(void) "-e to specify path to vdev dir\n"); (void) fprintf(stderr, " -x <dumpdir> -- " "dump all read blocks into specified directory\n"); - (void) fprintf(stderr, " -P print numbers in parseable form\n"); + (void) fprintf(stderr, " -P print numbers in parsable form\n"); (void) fprintf(stderr, " -t <txg> -- highest txg to use when " "searching for uberblocks\n"); (void) fprintf(stderr, " -I <number of inflight I/Os> -- " diff --git a/cmd/zpool/zpool_main.c b/cmd/zpool/zpool_main.c index 414ed69c5..0603efdba 100644 --- a/cmd/zpool/zpool_main.c +++ b/cmd/zpool/zpool_main.c @@ -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) |