diff options
author | Frederik Wessels <[email protected]> | 2012-04-24 07:59:56 -0400 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2012-04-27 15:15:37 -0700 |
commit | 95bcd51ecc3685111e03f407fa7ce40970f99aee (patch) | |
tree | 23b511000280e264e3e646f9e9a6da6ece574070 /cmd | |
parent | 187632dcef255acfbeff203d96b00904eb1e1c0a (diff) |
Illumos #1946: incorrect formatting when listing output of multiple pools with zpool iostat -v
Reviewed by: Richard Elling <[email protected]>
Reviewed by: Joshua M. Clulow <[email protected]>
Approved by: Richard Lowe <[email protected]>
Reference to Illumos issue:
https://www.illumos.org/issues/1946
Ported by: Richard Yao <[email protected]>
Signed-off-by: Brian Behlendorf <[email protected]>
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/zpool/zpool_main.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/cmd/zpool/zpool_main.c b/cmd/zpool/zpool_main.c index a6c5a4723..bc9177137 100644 --- a/cmd/zpool/zpool_main.c +++ b/cmd/zpool/zpool_main.c @@ -21,6 +21,9 @@ /* * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved. + * Copyright 2011 Nexenta Systems, Inc. All rights reserved. + * Copyright (c) 2011 by Delphix. All rights reserved. + * Copyright (c) 2012 by Frederik Wessels. All rights reserved. */ #include <assert.h> @@ -2236,7 +2239,8 @@ get_namewidth(zpool_handle_t *zhp, void *data) if (!cb->cb_verbose) cb->cb_namewidth = strlen(zpool_get_name(zhp)); else - cb->cb_namewidth = max_width(zhp, nvroot, 0, 0); + cb->cb_namewidth = max_width(zhp, nvroot, 0, + cb->cb_namewidth); } /* |