svn commit: r241259 - stable/8/sys/boot/zfs
Andriy Gapon
avg at FreeBSD.org
Sat Oct 6 18:45:19 UTC 2012
Author: avg
Date: Sat Oct 6 18:45:18 2012
New Revision: 241259
URL: http://svn.freebsd.org/changeset/base/241259
Log:
MFC r240348: zfs boot: print only an attribute name in fzap_list
Modified:
stable/8/sys/boot/zfs/zfsimpl.c
Directory Properties:
stable/8/sys/ (props changed)
stable/8/sys/boot/ (props changed)
Modified: stable/8/sys/boot/zfs/zfsimpl.c
==============================================================================
--- stable/8/sys/boot/zfs/zfsimpl.c Sat Oct 6 18:45:13 2012 (r241258)
+++ stable/8/sys/boot/zfs/zfsimpl.c Sat Oct 6 18:45:18 2012 (r241259)
@@ -1418,7 +1418,8 @@ fzap_list(const spa_t *spa, const 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);
}
}
More information about the svn-src-stable-8
mailing list