svn commit: r241258 - stable/9/sys/boot/zfs

Andriy Gapon avg at FreeBSD.org
Sat Oct 6 18:45:14 UTC 2012


Author: avg
Date: Sat Oct  6 18:45:13 2012
New Revision: 241258
URL: http://svn.freebsd.org/changeset/base/241258

Log:
  MFC r240348: zfs boot: print only an attribute name in fzap_list

Modified:
  stable/9/sys/boot/zfs/zfsimpl.c
Directory Properties:
  stable/9/sys/   (props changed)
  stable/9/sys/boot/   (props changed)

Modified: stable/9/sys/boot/zfs/zfsimpl.c
==============================================================================
--- stable/9/sys/boot/zfs/zfsimpl.c	Sat Oct  6 18:42:39 2012	(r241257)
+++ stable/9/sys/boot/zfs/zfsimpl.c	Sat Oct  6 18:45:13 2012	(r241258)
@@ -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-all mailing list