From owner-svn-src-all@FreeBSD.ORG Sat Jan 9 15:37:24 2010 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9C0F91065670; Sat, 9 Jan 2010 15:37:24 +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 8B2988FC23; Sat, 9 Jan 2010 15:37:24 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o09FbOjt041863; Sat, 9 Jan 2010 15:37:24 GMT (envelope-from bz@svn.freebsd.org) Received: (from bz@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o09FbODM041861; Sat, 9 Jan 2010 15:37:24 GMT (envelope-from bz@svn.freebsd.org) Message-Id: <201001091537.o09FbODM041861@svn.freebsd.org> From: "Bjoern A. Zeeb" Date: Sat, 9 Jan 2010 15:37:24 +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: r201897 - head/usr.sbin/traceroute X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 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: Sat, 09 Jan 2010 15:37:24 -0000 Author: bz Date: Sat Jan 9 15:37:24 2010 New Revision: 201897 URL: http://svn.freebsd.org/changeset/base/201897 Log: Correct spelling. Submitted by: (pluknet gmail.com) MFC after: 4 days X-MFC with: r201806 Modified: head/usr.sbin/traceroute/findsaddr-udp.c Modified: head/usr.sbin/traceroute/findsaddr-udp.c ============================================================================== --- head/usr.sbin/traceroute/findsaddr-udp.c Sat Jan 9 15:31:27 2010 (r201896) +++ head/usr.sbin/traceroute/findsaddr-udp.c Sat Jan 9 15:37:24 2010 (r201897) @@ -40,7 +40,7 @@ /* * Return the source address for the given destination address. * - * This makes use of proper source address seclection in the FreeBSD kernel + * This makes use of proper source address selection in the FreeBSD kernel * even taking jails into account (sys/netinet/in_pcb.c:in_pcbladdr()). * We open a UDP socket, and connect to the destination, letting the kernel * do the bind and then read the source IPv4 address using getsockname(2).