From owner-svn-src-head@FreeBSD.ORG Wed Apr 28 10:57:27 2010 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 79AE6106566B; Wed, 28 Apr 2010 10:57:27 +0000 (UTC) (envelope-from rpaulo@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 68A948FC1B; Wed, 28 Apr 2010 10:57:27 +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 o3SAvRUp009726; Wed, 28 Apr 2010 10:57:27 GMT (envelope-from rpaulo@svn.freebsd.org) Received: (from rpaulo@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o3SAvRpH009723; Wed, 28 Apr 2010 10:57:27 GMT (envelope-from rpaulo@svn.freebsd.org) Message-Id: <201004281057.o3SAvRpH009723@svn.freebsd.org> From: Rui Paulo Date: Wed, 28 Apr 2010 10:57:27 +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: r207320 - head/sbin/ifconfig 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: Wed, 28 Apr 2010 10:57:27 -0000 Author: rpaulo Date: Wed Apr 28 10:57:27 2010 New Revision: 207320 URL: http://svn.freebsd.org/changeset/base/207320 Log: Fix typos. Obtained from: DragonFlyBSD Modified: head/sbin/ifconfig/ifconfig.8 head/sbin/ifconfig/ifieee80211.c Modified: head/sbin/ifconfig/ifconfig.8 ============================================================================== --- head/sbin/ifconfig/ifconfig.8 Wed Apr 28 10:36:33 2010 (r207319) +++ head/sbin/ifconfig/ifconfig.8 Wed Apr 28 10:57:27 2010 (r207320) @@ -1163,9 +1163,9 @@ In particular the information elements i for old devices are different. When compatibility support is enabled both standard and compatible data will be provided. -Stations that associate using the compatiblity mechanisms are flagged +Stations that associate using the compatibility mechanisms are flagged in ``list sta''. -To disable compatiblity support use +To disable compatibility support use .Fl htcompat . .It Cm htprotmode Ar technique For interfaces operating in 802.11n, use the specified Modified: head/sbin/ifconfig/ifieee80211.c ============================================================================== --- head/sbin/ifconfig/ifieee80211.c Wed Apr 28 10:36:33 2010 (r207319) +++ head/sbin/ifconfig/ifieee80211.c Wed Apr 28 10:57:27 2010 (r207320) @@ -5027,7 +5027,7 @@ DECL_CMD_FUNC(set80211clone_wlanaddr, ar ea = ether_aton(arg); if (ea == NULL) - errx(1, "%s: cannot parse addres", arg); + errx(1, "%s: cannot parse address", arg); memcpy(params.icp_macaddr, ea->octet, IEEE80211_ADDR_LEN); params.icp_flags |= IEEE80211_CLONE_MACADDR; }