From owner-cvs-src@FreeBSD.ORG Thu Oct 4 18:27:46 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 30A0316A417; Thu, 4 Oct 2007 18:27:46 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 2996613C478; Thu, 4 Oct 2007 18:27:46 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l94IRkH4052813; Thu, 4 Oct 2007 18:27:46 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l94IRkpi052812; Thu, 4 Oct 2007 18:27:46 GMT (envelope-from obrien) Message-Id: <200710041827.l94IRkpi052812@repoman.freebsd.org> From: "David E. O'Brien" Date: Thu, 4 Oct 2007 18:27:45 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/usr.bin/netstat atalk.c bpf.c inet.c inet6.c ipsec.c ipx.c main.c mbuf.c mroute.c mroute6.c netgraph.c netstat.h pfkey.c route.c unix.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Oct 2007 18:27:46 -0000 obrien 2007-10-04 18:27:45 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.bin/netstat atalk.c bpf.c inet.c inet6.c ipsec.c ipx.c main.c mbuf.c mroute.c mroute6.c netgraph.c netstat.h pfkey.c route.c unix.c Log: MFC: Use uintmax_t to pass around 64-bit quantities, including to printf(). Using uintmax_t is also robust to further extensions in both the C language and the bitwidth of kernel counters. Revision Changes Path 1.24.8.2 +1 -0 src/usr.bin/netstat/atalk.c 1.5.2.4 +1 -0 src/usr.bin/netstat/bpf.c 1.70.2.4 +29 -28 src/usr.bin/netstat/inet.c 1.25.8.3 +161 -160 src/usr.bin/netstat/inet6.c 1.12.8.3 +27 -26 src/usr.bin/netstat/ipsec.c 1.23.2.3 +1 -0 src/usr.bin/netstat/ipx.c 1.72.2.10 +4 -4 src/usr.bin/netstat/main.c 1.42.8.8 +24 -23 src/usr.bin/netstat/mbuf.c 1.22.8.3 +15 -10 src/usr.bin/netstat/mroute.c 1.15.8.1 +19 -18 src/usr.bin/netstat/mroute6.c 1.10.8.3 +1 -0 src/usr.bin/netstat/netgraph.c 1.41.2.7 +3 -3 src/usr.bin/netstat/netstat.h 1.1.2.3 +23 -22 src/usr.bin/netstat/pfkey.c 1.76.2.4 +1 -0 src/usr.bin/netstat/route.c 1.18.8.2 +1 -0 src/usr.bin/netstat/unix.c