Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/netinet Fix typos.



details:   https://anonhg.NetBSD.org/src/rev/9ba3782d111d
branches:  trunk
changeset: 764410:9ba3782d111d
user:      wiz <wiz%NetBSD.org@localhost>
date:      Wed Apr 20 14:08:07 2011 +0000

description:
Fix typos.

diffstat:

 sys/netinet/tcp_input.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (36 lines):

diff -r 8e8ac67cbe18 -r 9ba3782d111d sys/netinet/tcp_input.c
--- a/sys/netinet/tcp_input.c   Wed Apr 20 13:35:51 2011 +0000
+++ b/sys/netinet/tcp_input.c   Wed Apr 20 14:08:07 2011 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: tcp_input.c,v 1.309 2011/04/20 13:35:51 gdt Exp $      */
+/*     $NetBSD: tcp_input.c,v 1.310 2011/04/20 14:08:07 wiz Exp $      */
 
 /*
  * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
@@ -145,7 +145,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: tcp_input.c,v 1.309 2011/04/20 13:35:51 gdt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: tcp_input.c,v 1.310 2011/04/20 14:08:07 wiz Exp $");
 
 #include "opt_inet.h"
 #include "opt_ipsec.h"
@@ -3283,7 +3283,7 @@
                /*
                 * As with srtt, this should never happen.  There is
                 * no support in RFC2988 for this operation.  But 1/4s
-                * as rttvar when faced with someting arguably wrong
+                * as rttvar when faced with something arguably wrong
                 * is ok.
                 */
                if ((tp->t_rttvar += delta) <= 0)
@@ -3294,7 +3294,7 @@
                 * set rtt=R and srtt=R/2.
                 * For srtt, storage representation is 1/32 ticks,
                 * so shift left by 5.
-                * For rttvar, storage representatnio is 1/16 ticks,
+                * For rttvar, storage representation is 1/16 ticks,
                 * So shift left by 4, but then right by 1 to halve.
                 */
                tp->t_srtt = rtt << (TCP_RTT_SHIFT + 2);



Home | Main Index | Thread Index | Old Index