From d37c5193242c438d79804716dbebbe2e89005f2d Mon Sep 17 00:00:00 2001 From: Randall Stewart Date: Fri, 24 Aug 2007 00:35:18 +0000 Subject: [PATCH] - Fix typo in netstat's display of Nagle algorithm - refer to the RFC. Submitted by: bruce@cran.org.uk Approved by: re@freebsd.org (Bruce Mah) --- usr.bin/netstat/sctp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.bin/netstat/sctp.c b/usr.bin/netstat/sctp.c index feb9a25b288..1562965fd32 100644 --- a/usr.bin/netstat/sctp.c +++ b/usr.bin/netstat/sctp.c @@ -649,8 +649,8 @@ sctp_stats(u_long off, const char *name, int af1 __unused, int proto __unused) #if 0 p(sctps_markedretrans, "\t%lu TODO:%sctps_markedretrans\n"); #endif - p(sctps_naglesent, "\t%lu nagle allowed %sending\n"); - p(sctps_naglequeued, "\t%lu nagle doe%s't allow sending\n"); + p(sctps_naglesent, "\t%lu RFC813 allowed %sending\n"); + p(sctps_naglequeued, "\t%lu RFC813 does not allow sending\n"); p(sctps_maxburstqueued, "\t%lu max bur%st dosn't allow sending\n"); p(sctps_ifnomemqueued, "\t%lu look ahead tell%s us no memory in " "interface\n");