From owner-svn-src-all@FreeBSD.ORG Sat Oct 6 18:45:14 2012 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 392E81065670; Sat, 6 Oct 2012 18:45:14 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 243018FC1A; Sat, 6 Oct 2012 18:45:14 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q96IjDXX017856; Sat, 6 Oct 2012 18:45:13 GMT (envelope-from avg@svn.freebsd.org) Received: (from avg@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q96IjDpO017854; Sat, 6 Oct 2012 18:45:13 GMT (envelope-from avg@svn.freebsd.org) Message-Id: <201210061845.q96IjDpO017854@svn.freebsd.org> From: Andriy Gapon Date: Sat, 6 Oct 2012 18:45:13 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r241258 - stable/9/sys/boot/zfs X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 06 Oct 2012 18:45:14 -0000 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); } }