From owner-svn-src-all@FreeBSD.ORG Fri Jul 5 23:40:09 2013 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 2BDE8EB0; Fri, 5 Jul 2013 23:40:09 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 1C8A01ADD; Fri, 5 Jul 2013 23:40:09 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r65Ne911026293; Fri, 5 Jul 2013 23:40:09 GMT (envelope-from cperciva@svn.freebsd.org) Received: (from cperciva@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r65Ne8uo026292; Fri, 5 Jul 2013 23:40:08 GMT (envelope-from cperciva@svn.freebsd.org) Message-Id: <201307052340.r65Ne8uo026292@svn.freebsd.org> From: Colin Percival Date: Fri, 5 Jul 2013 23:40:08 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r252854 - head/sys/net X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.14 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: Fri, 05 Jul 2013 23:40:09 -0000 Author: cperciva Date: Fri Jul 5 23:40:08 2013 New Revision: 252854 URL: http://svnweb.freebsd.org/changeset/base/252854 Log: Fix typo: minmum -> minimum. Submitted by: @z3ndrag0n Modified: head/sys/net/if_var.h Modified: head/sys/net/if_var.h ============================================================================== --- head/sys/net/if_var.h Fri Jul 5 23:16:56 2013 (r252853) +++ head/sys/net/if_var.h Fri Jul 5 23:40:08 2013 (r252854) @@ -204,7 +204,7 @@ struct ifnet { u_int if_fib; /* interface FIB */ u_char if_alloctype; /* if_type at time of allocation */ - u_int if_hw_tsomax; /* tso burst length limit, the minmum + u_int if_hw_tsomax; /* tso burst length limit, the minimum * is (IP_MAXPACKET / 8). * XXXAO: Have to find a better place * for it eventually. */