diff options
author | наб <[email protected]> | 2020-11-13 23:38:29 +0100 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2020-11-17 12:20:01 -0800 |
commit | c06118e0b1ed33863475cadac70e32f99ff91d2f (patch) | |
tree | bd9817e507ddeb94b5f1767fe23968d3eef0e31d /include/libzfs.h | |
parent | 5f24bd11ee2ecc4bcf290150e655837b041de00c (diff) |
zpool: correctly align columns with -p
zpool_expand_proplist() now ignores pl_fixed if its new literal
argument is true. The rest is a consequence of needing to pass
that down.
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: Ahelenia Ziemiao?=~Dska <[email protected]>
Closes #11202
Diffstat (limited to 'include/libzfs.h')
-rw-r--r-- | include/libzfs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libzfs.h b/include/libzfs.h index 337e4934a..de8a604b2 100644 --- a/include/libzfs.h +++ b/include/libzfs.h @@ -556,7 +556,7 @@ extern void zfs_prune_proplist(zfs_handle_t *, uint8_t *); /* * zpool property management */ -extern int zpool_expand_proplist(zpool_handle_t *, zprop_list_t **); +extern int zpool_expand_proplist(zpool_handle_t *, zprop_list_t **, boolean_t); extern int zpool_prop_get_feature(zpool_handle_t *, const char *, char *, size_t); extern const char *zpool_prop_default_string(zpool_prop_t); |