Received: by mail.netbsd.org (Postfix, from userid 605) id 3263984E9C; Wed, 25 May 2022 09:37:05 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 67F5784E9D for ; Wed, 25 May 2022 09:37:04 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id ltNa4Lh1YUSw for ; Wed, 25 May 2022 09:37:04 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id B6CA084E9C for ; Wed, 25 May 2022 09:37:03 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id E297FFAEB; Wed, 25 May 2022 09:37:54 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1653471474151770" MIME-Version: 1.0 Date: Wed, 25 May 2022 09:37:54 +0000 From: "Tobias Nygren" Subject: CVS commit: pkgsrc/sysutils/lsof/files To: pkgsrc-changes@NetBSD.org Reply-To: tnn@netbsd.org X-Mailer: log_accum Message-Id: <20220525093754.E297FFAEB@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1653471474151770 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: tnn Date: Wed May 25 09:37:54 UTC 2022 Modified Files: pkgsrc/sysutils/lsof/files: rnmt.c Log Message: lsof: fix comparison operator, ride previous bump To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/sysutils/lsof/files/rnmt.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1653471474151770 Content-Disposition: inline Content-Length: 709 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/sysutils/lsof/files/rnmt.c diff -u pkgsrc/sysutils/lsof/files/rnmt.c:1.1 pkgsrc/sysutils/lsof/files/rnmt.c:1.2 --- pkgsrc/sysutils/lsof/files/rnmt.c:1.1 Wed May 25 09:33:37 2022 +++ pkgsrc/sysutils/lsof/files/rnmt.c Wed May 25 09:37:54 2022 @@ -149,7 +149,7 @@ ncache_walk(KA_T ncp, KA_T pvp, const st right = (KA_T)nc.nc_tree.rb_nodes[1]; if (sanity_check_vnode_impl(&vi) == 0 && sanity_check_namecache(&nc) == 0) { lnc = ncache_enter_local(vp, pvp, plnc, &nc); - if (vi.vi_vnode.v_type = VDIR && vi.vi_nc_tree.rbt_root != NULL) { + if (vi.vi_vnode.v_type == VDIR && vi.vi_nc_tree.rbt_root != NULL) { ncache_walk((KA_T)vi.vi_nc_tree.rbt_root, ncp, lnc); } } --_----------=_1653471474151770--