From owner-svn-src-all@FreeBSD.ORG Wed Jul 2 22:05:22 2014 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C80C7B11; Wed, 2 Jul 2014 22:05:22 +0000 (UTC) Received: from mail-qg0-x230.google.com (mail-qg0-x230.google.com [IPv6:2607:f8b0:400d:c04::230]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4AC982736; Wed, 2 Jul 2014 22:05:22 +0000 (UTC) Received: by mail-qg0-f48.google.com with SMTP id q108so5275305qgd.21 for ; Wed, 02 Jul 2014 15:05:20 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:content-type; bh=KZcIF7KPTmb6c4F9V3RRuTcMFU5GgMYscqTpfAtul8E=; b=PJsYuyqM7lFW8keUWUvUVT6SqLDmo686MHDmJMglvUi1oZ2bRy6avyF7ox05gSOO9M fxDuEEBvIJiZmllWHICjPh04PfRviuIwVNGmqw7tTeM8BHpQLYNRoHPD1fD3+43zuLyd I75qy8OP4+Tqx6JKtdmWFwTK4MKxojeKeRvq2gzeuIA13VhszPNnZGNqO8dhEK9z0BaE VGF1SggLTc/CH1QN9IuOyM5LkKTY/b31yhEqfigdjeULNjXMdTWJo4PH03tt6SuStYpW d1nDxiqL7gES/c1DdZsW43vPDPYyzio1BaQBi9bmEg2/vgVtWmbICINRx3Du6JN3dd1F 15xQ== MIME-Version: 1.0 X-Received: by 10.140.34.195 with SMTP id l61mr906741qgl.87.1404338720915; Wed, 02 Jul 2014 15:05:20 -0700 (PDT) Sender: hiren.panchasara@gmail.com Received: by 10.96.73.39 with HTTP; Wed, 2 Jul 2014 15:05:20 -0700 (PDT) In-Reply-To: <201407022204.s62M4E0t020676@svn.freebsd.org> References: <201407022204.s62M4E0t020676@svn.freebsd.org> Date: Wed, 2 Jul 2014 15:05:20 -0700 X-Google-Sender-Auth: XAdb9hBtn3xqYs6IGgHKnFUW00Y Message-ID: Subject: Re: svn commit: r268183 - head/sys/netinet From: hiren panchasara To: src-committers , svn-src-all , svn-src-head Content-Type: text/plain; charset=UTF-8 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Jul 2014 22:05:22 -0000 On Wed, Jul 2, 2014 at 3:04 PM, Hiren Panchasara wrote: > Author: hiren > Date: Wed Jul 2 22:04:14 2014 > New Revision: 268183 > URL: http://svnweb.freebsd.org/changeset/base/268183 > > Log: Ugh. sorry. Commit log was supposed to be: Fix a typo and improve readability. > > > Modified: > head/sys/netinet/tcp_input.c > > Modified: head/sys/netinet/tcp_input.c > ============================================================================== > --- head/sys/netinet/tcp_input.c Wed Jul 2 22:04:12 2014 (r268182) > +++ head/sys/netinet/tcp_input.c Wed Jul 2 22:04:14 2014 (r268183) > @@ -3472,8 +3472,8 @@ tcp_mss_update(struct tcpcb *tp, int off > bcopy(&metrics, metricptr, sizeof(struct hc_metrics_lite)); > > /* > - * If there's a discovered mtu int tcp hostcache, use it > - * else, use the link mtu. > + * If there's a discovered mtu in tcp hostcache, use it. > + * Else, use the link mtu. > */ > if (metrics.rmx_mtu) > mss = min(metrics.rmx_mtu, maxmtu) - min_protoh; >