Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 6 Oct 2012 18:45:18 +0000 (UTC)
From:      Andriy Gapon <avg@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org
Subject:   svn commit: r241259 - stable/8/sys/boot/zfs
Message-ID:  <201210061845.q96IjIVm017899@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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);
 		}
 	}
 



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