From owner-svn-src-head@FreeBSD.ORG Thu Nov 6 16:30:21 2008 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0DE5B1065672; Thu, 6 Nov 2008 16:30:21 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id F13BB8FC14; Thu, 6 Nov 2008 16:30:20 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id mA6GUKFs060200; Thu, 6 Nov 2008 16:30:20 GMT (envelope-from bz@svn.freebsd.org) Received: (from bz@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id mA6GUKZY060199; Thu, 6 Nov 2008 16:30:20 GMT (envelope-from bz@svn.freebsd.org) Message-Id: <200811061630.mA6GUKZY060199@svn.freebsd.org> From: "Bjoern A. Zeeb" Date: Thu, 6 Nov 2008 16:30:20 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r184731 - head/sys/netinet X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 Nov 2008 16:30:21 -0000 Author: bz Date: Thu Nov 6 16:30:20 2008 New Revision: 184731 URL: http://svn.freebsd.org/changeset/base/184731 Log: Fix typo and while here another one. Reviewed by: keramida Reported by: keramida MFC after: 2 months (with r184720) Modified: head/sys/netinet/tcp_input.c Modified: head/sys/netinet/tcp_input.c ============================================================================== --- head/sys/netinet/tcp_input.c Thu Nov 6 16:28:28 2008 (r184730) +++ head/sys/netinet/tcp_input.c Thu Nov 6 16:30:20 2008 (r184731) @@ -1501,7 +1501,7 @@ tcp_do_segment(struct mbuf *m, struct tc * only accepting RSTs where the sequence number is equal to * last_ack_sent. In all other states (the states in which a * RST is more likely), the more permissive check is used. - * If we have multiple segments in flight, the intial reset + * If we have multiple segments in flight, the initial reset * segment sequence numbers will be to the left of last_ack_sent, * but they will eventually catch up. * In any case, it never made sense to trim reset segments to @@ -2849,7 +2849,7 @@ tcp_mss_update(struct tcpcb *tp, int off */ if (maxmtu == 0) { /* - * In case we return early we need to intialize metrics + * In case we return early we need to initialize metrics * to a defined state as tcp_hc_get() would do for us * if there was no cache hit. */