From owner-svn-src-head@freebsd.org Sat Apr 30 19:05:01 2016 Return-Path: Delivered-To: svn-src-head@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 5591BAD9972; Sat, 30 Apr 2016 19:05:01 +0000 (UTC) (envelope-from pfg@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 2D6951382; Sat, 30 Apr 2016 19:05:01 +0000 (UTC) (envelope-from pfg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u3UJ50QK029555; Sat, 30 Apr 2016 19:05:00 GMT (envelope-from pfg@FreeBSD.org) Received: (from pfg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u3UJ4xsv029542; Sat, 30 Apr 2016 19:04:59 GMT (envelope-from pfg@FreeBSD.org) Message-Id: <201604301904.u3UJ4xsv029542@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pfg set sender to pfg@FreeBSD.org using -f From: "Pedro F. Giffuni" Date: Sat, 30 Apr 2016 19:04:59 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r298858 - in head/sbin: camcontrol ipfw pfctl swapon X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.22 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: Sat, 30 Apr 2016 19:05:01 -0000 Author: pfg Date: Sat Apr 30 19:04:59 2016 New Revision: 298858 URL: https://svnweb.freebsd.org/changeset/base/298858 Log: sbin: minor spelling fixes. No functional change. Modified: head/sbin/camcontrol/fwdownload.c head/sbin/ipfw/ipfw2.c head/sbin/ipfw/ipv6.c head/sbin/pfctl/parse.y head/sbin/swapon/swapon.c Modified: head/sbin/camcontrol/fwdownload.c ============================================================================== --- head/sbin/camcontrol/fwdownload.c Sat Apr 30 19:01:51 2016 (r298857) +++ head/sbin/camcontrol/fwdownload.c Sat Apr 30 19:04:59 2016 (r298858) @@ -216,7 +216,7 @@ static struct fw_vendor vendors_list[] = * since we won't actually send a WRITE BUFFER with any of the * listed parameters. If a SATA device is behind a SAS controller, * the SCSI to ATA translation code (at least for LSI) doesn't - * generaly translate a SCSI WRITE BUFFER into an ATA DOWNLOAD + * generally translate a SCSI WRITE BUFFER into an ATA DOWNLOAD * MICROCODE command. So, we use the SCSI ATA PASS_THROUGH command * to send the ATA DOWNLOAD MICROCODE command instead. */ Modified: head/sbin/ipfw/ipfw2.c ============================================================================== --- head/sbin/ipfw/ipfw2.c Sat Apr 30 19:01:51 2016 (r298857) +++ head/sbin/ipfw/ipfw2.c Sat Apr 30 19:04:59 2016 (r298858) @@ -82,7 +82,7 @@ int ipfw_socket = -1; * Check if we have enough space in cmd buffer. Note that since * first 8? u32 words are reserved by reserved header, full cmd * buffer can't be used, so we need to protect from buffer overrun - * only. At the beginnig, cblen is less than actual buffer size by + * only. At the beginning, cblen is less than actual buffer size by * size of ipfw_insn_u32 instruction + 1 u32 work. This eliminates need * for checking small instructions fitting in given range. * We also (ab)use the fact that ipfw_insn is always the first field @@ -4929,7 +4929,7 @@ table_search_ctlv(ipfw_obj_ctlv *ctlv, u * Rules in reply are modified to store their actual ruleset number. * * (*1) TLVs inside IPFW_TLV_TBL_LIST needs to be sorted ascending - * accoring to their idx field and there has to be no duplicates. + * according to their idx field and there has to be no duplicates. * (*2) Numbered rules inside IPFW_TLV_RULE_LIST needs to be sorted ascending. * (*3) Each ip_fw structure needs to be aligned to u64 boundary. */ Modified: head/sbin/ipfw/ipv6.c ============================================================================== --- head/sbin/ipfw/ipv6.c Sat Apr 30 19:01:51 2016 (r298857) +++ head/sbin/ipfw/ipv6.c Sat Apr 30 19:04:59 2016 (r298858) @@ -325,7 +325,7 @@ lookup_host6 (char *host, struct in6_add * any matches any IP6. Actually returns an empty instruction. * me returns O_IP6_*_ME * - * 03f1::234:123:0342 single IP6 addres + * 03f1::234:123:0342 single IP6 address * 03f1::234:123:0342/24 address/mask * 03f1::234:123:0342/24,03f1::234:123:0343/ List of address * Modified: head/sbin/pfctl/parse.y ============================================================================== --- head/sbin/pfctl/parse.y Sat Apr 30 19:01:51 2016 (r298857) +++ head/sbin/pfctl/parse.y Sat Apr 30 19:04:59 2016 (r298858) @@ -6173,7 +6173,7 @@ rt_tableid_max(void) /* * As the OpenBSD code only compares > and not >= we need to adjust * here given we only accept values of 0..n and want to avoid #ifdefs - * in the grammer. + * in the grammar. */ return (fibs - 1); #else Modified: head/sbin/swapon/swapon.c ============================================================================== --- head/sbin/swapon/swapon.c Sat Apr 30 19:01:51 2016 (r298857) +++ head/sbin/swapon/swapon.c Sat Apr 30 19:04:59 2016 (r298858) @@ -428,7 +428,7 @@ swap_on_off_geli(const char *name, char free(args); if (error) { - /* error occured during creation. */ + /* error occurred during creation. */ if (qflag == 0) warnx("%s: Invalid parameters", name); return (NULL);