zfs boot: print only an attribute name in fzap_list

... this matches mzap_list behavior

MFC after:	12 days
This commit is contained in:
Andriy Gapon 2012-09-11 07:13:58 +00:00
parent e644b976b0
commit 4b7fc6b08e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=240348

View File

@ -1484,7 +1484,8 @@ fzap_list(const spa_t *spa, const dnode_phys_t *dnode)
*/
value = fzap_leaf_value(&zl, zc);
printf("%s 0x%jx\n", name, (uintmax_t)value);
//printf("%s 0x%jx\n", name, (uintmax_t)value);
printf("%s\n", name);
}
}