From owner-freebsd-stable@FreeBSD.ORG Tue Apr 13 13:05:35 2010 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ACA42106566B for ; Tue, 13 Apr 2010 13:05:35 +0000 (UTC) (envelope-from bsd@nezmer.info) Received: from mail.nezmer.info (nezmer.info [97.107.142.36]) by mx1.freebsd.org (Postfix) with ESMTP id 8EBB98FC0C for ; Tue, 13 Apr 2010 13:05:35 +0000 (UTC) Date: Tue, 13 Apr 2010 16:05:24 +0300 From: Nezmer To: freebsd-stable@freebsd.org Message-ID: <20100413130524.GA45088@mail> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.20 (2009-06-14) Subject: 8-STABLE/amd64: r206088 breaks compilation X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Apr 2010 13:05:35 -0000 Hi, The error is: 8_stable-build/usr.bin/netstat/netgraph.c: In function 'netgraphprotopr': 8_stable-build/usr.bin/netstat/netgraph.c:174: error: 'struct ngsock' has no member named 'node_id' 8_stable-build/usr.bin/netstat/netgraph.c:176:error: 'struct ngsock' has no member named 'node_id' I think the problem is here: revision 206087 revision 206088 snprintf(path, sizeof(path), "[%lx]:", (u_long)info.node); snprintf(path, sizeof(path), "[%x]:", info.node_id); Can anyone confirm?