diff options
author | Brian Behlendorf <[email protected]> | 2013-01-31 11:02:21 -0800 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2013-01-31 11:06:57 -0800 |
commit | f52b31eaf0301feeb308fbc46f696eb44d0ae523 (patch) | |
tree | 149bc5097f9184f26cb445193b3750701ff6825f | |
parent | 36f86f73f68548f46eb3229c8adf583d59fa9988 (diff) |
Honor 80 character limit in 'zpool status'
This is a minor nit, but the second line of the 'action' message
when you need to upgrade your pool to support feature flags exceeds
the standard 80 character limit. Fix it by moving the word
'feature' on to the third line.
Signed-off-by: Brian Behlendorf <[email protected]>
-rw-r--r-- | cmd/zpool/zpool_main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/zpool/zpool_main.c b/cmd/zpool/zpool_main.c index 5ad93782c..c52bd3ed7 100644 --- a/cmd/zpool/zpool_main.c +++ b/cmd/zpool/zpool_main.c @@ -4090,8 +4090,8 @@ status_callback(zpool_handle_t *zhp, void *data) "but some features are unavailable.\n")); (void) printf(gettext("action: Upgrade the pool using 'zpool " "upgrade'. Once this is done, the\n\tpool will no longer " - "be accessible on software that does not support feature\n" - "\tflags.\n")); + "be accessible on software that does not support\n\t" + "feature flags.\n")); break; case ZPOOL_STATUS_VERSION_NEWER: |