Skip to content

Commit

Permalink
Illumos openzfs#1946: incorrect formatting when listing output of mul…
Browse files Browse the repository at this point in the history
…tiple 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]>
  • Loading branch information
storkone authored and behlendorf committed Apr 27, 2012
1 parent 187632d commit 95bcd51
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion cmd/zpool/zpool_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down Expand Up @@ -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);
}

/*
Expand Down

0 comments on commit 95bcd51

Please sign in to comment.