zfs boot: print only an attribute name in fzap_list

... this matches mzap_list behavior

MFC after:	12 days
This commit is contained in:
avg 2012-09-11 07:13:58 +00:00
parent 85d585add4
commit a12b81402e

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);
}
}