Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 11 Sep 2012 07:13:59 +0000 (UTC)
From:      Andriy Gapon <avg@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r240348 - head/sys/boot/zfs
Message-ID:  <201209110713.q8B7Dx3e098910@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: avg
Date: Tue Sep 11 07:13:58 2012
New Revision: 240348
URL: http://svn.freebsd.org/changeset/base/240348

Log:
  zfs boot: print only an attribute name in fzap_list
  
  ... this matches mzap_list behavior
  
  MFC after:	12 days

Modified:
  head/sys/boot/zfs/zfsimpl.c

Modified: head/sys/boot/zfs/zfsimpl.c
==============================================================================
--- head/sys/boot/zfs/zfsimpl.c	Tue Sep 11 07:12:48 2012	(r240347)
+++ head/sys/boot/zfs/zfsimpl.c	Tue Sep 11 07:13:58 2012	(r240348)
@@ -1484,7 +1484,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);
 		}
 	}
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201209110713.q8B7Dx3e098910>