From owner-cvs-all@FreeBSD.ORG Fri Dec 31 00:32:50 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F0E2F16A4CE; Fri, 31 Dec 2004 00:32:50 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C094843D31; Fri, 31 Dec 2004 00:32:50 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id iBV0Wobm053277; Fri, 31 Dec 2004 00:32:50 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id iBV0WoHw053276; Fri, 31 Dec 2004 00:32:50 GMT (envelope-from rwatson) Message-Id: <200412310032.iBV0WoHw053276@repoman.freebsd.org> From: Robert Watson Date: Fri, 31 Dec 2004 00:32:50 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/netstat ipx.c main.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 31 Dec 2004 00:32:51 -0000 rwatson 2004-12-31 00:32:50 UTC FreeBSD src repository Modified files: usr.bin/netstat ipx.c main.c Log: Update netstat(1) for recent conversion of netipx to queue(9) from home-brew linked lists. Read in the ipxpcb_list structure first in order to find the first pcb pointer. Then follow the chain as before, only the termination condition is a NULL next pointer rather than a next pointer equal to the original offset. Revision Changes Path 1.21 +23 -3 src/usr.bin/netstat/ipx.c 1.71 +1 -1 src/usr.bin/netstat/main.c