Skip to content

Commit

Permalink
Honor 80 character limit in 'zpool status'
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
behlendorf committed Jan 31, 2013
1 parent 36f86f7 commit f52b31e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/zpool/zpool_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit f52b31e

Please sign in to comment.