From owner-cvs-usrbin Sun Feb 25 12:25:15 1996 Return-Path: owner-cvs-usrbin Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id MAA16968 for cvs-usrbin-outgoing; Sun, 25 Feb 1996 12:25:15 -0800 (PST) Received: (from bde@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id MAA16944 Sun, 25 Feb 1996 12:25:07 -0800 (PST) Date: Sun, 25 Feb 1996 12:25:07 -0800 (PST) From: Bruce Evans Message-Id: <199602252025.MAA16944@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-usrbin, cvs-gnu Subject: cvs commit: src/gnu/usr.bin/man/manpath Makefile src/usr.bin/at Makefile src/gnu/usr.bin/man/man Makefile Sender: owner-cvs-usrbin@FreeBSD.ORG Precedence: bulk bde 96/02/25 12:25:06 Modified: gnu/usr.bin/man/man Makefile gnu/usr.bin/man/manpath Makefile usr.bin/at Makefile Log: Use ${ECHO} instead of `echo' so that `make -s' is fairly quiet. Revision Changes Path 1.14 +1 -1 src/gnu/usr.bin/man/man/Makefile 1.13 +1 -1 src/gnu/usr.bin/man/manpath/Makefile 1.4 +2 -2 src/usr.bin/at/Makefile From owner-cvs-usrbin Mon Feb 26 13:47:36 1996 Return-Path: owner-cvs-usrbin Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id NAA20020 for cvs-usrbin-outgoing; Mon, 26 Feb 1996 13:47:36 -0800 (PST) Received: (from guido@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id NAA19974 Mon, 26 Feb 1996 13:47:17 -0800 (PST) Date: Mon, 26 Feb 1996 13:47:17 -0800 (PST) From: Guido van Rooij Message-Id: <199602262147.NAA19974@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-usrbin, cvs-sys Subject: cvs commit: src/sys/netinet tcp_input.c tcp_var.h src/usr.bin/netstat inet.c Sender: owner-cvs-usrbin@FreeBSD.ORG Precedence: bulk guido 96/02/26 13:47:17 Modified: usr.bin/netstat inet.c sys/netinet tcp_input.c tcp_var.h Log: Add a counter for the number of times the listen queue was overflowed to the tcpstat structure. (netstat -s) Reviewed by: wollman Obtained from: Steves, TCP/IP Ill. vol.3, page 189 Revision Changes Path 1.16 +1 -0 src/usr.bin/netstat/inet.c 1.37 +4 -2 src/sys/netinet/tcp_input.c 1.29 +2 -1 src/sys/netinet/tcp_var.h From owner-cvs-usrbin Mon Feb 26 14:46:42 1996 Return-Path: owner-cvs-usrbin Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id OAA23902 for cvs-usrbin-outgoing; Mon, 26 Feb 1996 14:46:42 -0800 (PST) Received: (from wosch@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id OAA23887 Mon, 26 Feb 1996 14:46:38 -0800 (PST) Date: Mon, 26 Feb 1996 14:46:38 -0800 (PST) From: Wolfram Schneider Message-Id: <199602262246.OAA23887@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-usrbin Subject: cvs commit: src/usr.bin/head head.c Sender: owner-cvs-usrbin@FreeBSD.ORG Precedence: bulk wosch 96/02/26 14:46:38 Modified: usr.bin/head head.c Log: first check the count and then get the next line of characters and not cause it to first get the characters even if the count (cnt) has become 0. Submitted by: R Bezuidenhout Revision Changes Path 1.3 +1 -1 src/usr.bin/head/head.c From owner-cvs-usrbin Wed Feb 28 23:44:55 1996 Return-Path: owner-cvs-usrbin Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id XAA15019 for cvs-usrbin-outgoing; Wed, 28 Feb 1996 23:44:55 -0800 (PST) Received: (from davidg@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id XAA14935 Wed, 28 Feb 1996 23:44:41 -0800 (PST) Date: Wed, 28 Feb 1996 23:44:41 -0800 (PST) From: David Greenman Message-Id: <199602290744.XAA14935@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-usrbin Subject: cvs commit: src/usr.bin/netstat if.c netstat.1 Sender: owner-cvs-usrbin@FreeBSD.ORG Precedence: bulk davidg 96/02/28 23:44:40 Modified: usr.bin/netstat if.c netstat.1 Log: Make the -w option actually useful to people. Instead of it creating a messy 130 column collage, output the system totals -or- info for a specific interface if -I is given. Also wait for before outputting the first sample so that it represents meaningful data (as opposed to the total since the system was booted - most busy systems wrap around many times during their operation, so these numbers are only misleading). Revision Changes Path 1.11 +75 -88 src/usr.bin/netstat/if.c 1.6 +4 -9 src/usr.bin/netstat/netstat.1