From owner-svn-src-all@freebsd.org Fri Aug 14 02:45:24 2015 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A997899FE0C; Fri, 14 Aug 2015 02:45:24 +0000 (UTC) (envelope-from pfg@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 989851A89; Fri, 14 Aug 2015 02:45:24 +0000 (UTC) (envelope-from pfg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7E2jO61086856; Fri, 14 Aug 2015 02:45:24 GMT (envelope-from pfg@FreeBSD.org) Received: (from pfg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7E2jN6A086851; Fri, 14 Aug 2015 02:45:23 GMT (envelope-from pfg@FreeBSD.org) Message-Id: <201508140245.t7E2jN6A086851@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pfg set sender to pfg@FreeBSD.org using -f From: "Pedro F. Giffuni" Date: Fri, 14 Aug 2015 02:45:23 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r286759 - in stable/10: sys/geom/raid usr.bin/wc X-SVN-Group: stable-10 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.20 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, 14 Aug 2015 02:45:24 -0000 Author: pfg Date: Fri Aug 14 02:45:22 2015 New Revision: 286759 URL: https://svnweb.freebsd.org/changeset/base/286759 Log: MFC r286615: Clean up some externally visible "more then" occurences Modified: stable/10/sys/geom/raid/md_intel.c stable/10/sys/geom/raid/md_jmicron.c stable/10/sys/geom/raid/md_nvidia.c stable/10/sys/geom/raid/md_sii.c stable/10/usr.bin/wc/wc.1 Directory Properties: stable/10/ (props changed) Modified: stable/10/sys/geom/raid/md_intel.c ============================================================================== --- stable/10/sys/geom/raid/md_intel.c Fri Aug 14 02:25:45 2015 (r286758) +++ stable/10/sys/geom/raid/md_intel.c Fri Aug 14 02:45:22 2015 (r286759) @@ -991,7 +991,7 @@ nofit: if (olddisk == NULL) panic("No disk at position %d!", disk_pos); if (olddisk->d_state != G_RAID_DISK_S_OFFLINE) { - G_RAID_DEBUG1(1, sc, "More then one disk for pos %d", + G_RAID_DEBUG1(1, sc, "More than one disk for pos %d", disk_pos); g_raid_change_disk_state(disk, G_RAID_DISK_S_STALE); return (0); Modified: stable/10/sys/geom/raid/md_jmicron.c ============================================================================== --- stable/10/sys/geom/raid/md_jmicron.c Fri Aug 14 02:25:45 2015 (r286758) +++ stable/10/sys/geom/raid/md_jmicron.c Fri Aug 14 02:45:22 2015 (r286759) @@ -494,7 +494,7 @@ nofit: if (olddisk == NULL) panic("No disk at position %d!", disk_pos); if (olddisk->d_state != G_RAID_DISK_S_OFFLINE) { - G_RAID_DEBUG1(1, sc, "More then one disk for pos %d", + G_RAID_DEBUG1(1, sc, "More than one disk for pos %d", disk_pos); g_raid_change_disk_state(disk, G_RAID_DISK_S_STALE); return (0); Modified: stable/10/sys/geom/raid/md_nvidia.c ============================================================================== --- stable/10/sys/geom/raid/md_nvidia.c Fri Aug 14 02:25:45 2015 (r286758) +++ stable/10/sys/geom/raid/md_nvidia.c Fri Aug 14 02:45:22 2015 (r286759) @@ -498,7 +498,7 @@ nofit: if (olddisk == NULL) panic("No disk at position %d!", disk_pos); if (olddisk->d_state != G_RAID_DISK_S_OFFLINE) { - G_RAID_DEBUG1(1, sc, "More then one disk for pos %d", + G_RAID_DEBUG1(1, sc, "More than one disk for pos %d", disk_pos); g_raid_change_disk_state(disk, G_RAID_DISK_S_STALE); return (0); Modified: stable/10/sys/geom/raid/md_sii.c ============================================================================== --- stable/10/sys/geom/raid/md_sii.c Fri Aug 14 02:25:45 2015 (r286758) +++ stable/10/sys/geom/raid/md_sii.c Fri Aug 14 02:45:22 2015 (r286759) @@ -549,7 +549,7 @@ nofit: if (olddisk == NULL) panic("No disk at position %d!", disk_pos); if (olddisk->d_state != G_RAID_DISK_S_OFFLINE) { - G_RAID_DEBUG1(1, sc, "More then one disk for pos %d", + G_RAID_DEBUG1(1, sc, "More than one disk for pos %d", disk_pos); g_raid_change_disk_state(disk, G_RAID_DISK_S_STALE); return (0); Modified: stable/10/usr.bin/wc/wc.1 ============================================================================== --- stable/10/usr.bin/wc/wc.1 Fri Aug 14 02:25:45 2015 (r286758) +++ stable/10/usr.bin/wc/wc.1 Fri Aug 14 02:45:22 2015 (r286759) @@ -31,7 +31,7 @@ .\" @(#)wc.1 8.2 (Berkeley) 4/19/94 .\" $FreeBSD$ .\" -.Dd December 6, 2008 +.Dd August 24, 2015 .Dt WC 1 .Os .Sh NAME @@ -70,7 +70,7 @@ The following options are available: .It Fl L The number of characters in the longest input line is written to the standard output. -When more then one +When more than one .Ar file argument is specified, the longest input line of .Em all