From owner-svn-src-head@FreeBSD.ORG Wed Apr 17 11:42:42 2013 Return-Path: Delivered-To: svn-src-head@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 1FD8B910; Wed, 17 Apr 2013 11:42:42 +0000 (UTC) (envelope-from gabor@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 0313D19D; Wed, 17 Apr 2013 11:42:42 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r3HBgfEd078232; Wed, 17 Apr 2013 11:42:41 GMT (envelope-from gabor@svn.freebsd.org) Received: (from gabor@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r3HBgeq7078221; Wed, 17 Apr 2013 11:42:40 GMT (envelope-from gabor@svn.freebsd.org) Message-Id: <201304171142.r3HBgeq7078221@svn.freebsd.org> From: Gabor Kovesdan Date: Wed, 17 Apr 2013 11:42:40 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r249583 - in head: include/rpcsvc sys/dev/cas sys/dev/xen/netback sys/fs/devfs sys/fs/msdosfs sys/kern sys/netgraph usr.sbin/nandsim 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.14 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, 17 Apr 2013 11:42:42 -0000 Author: gabor Date: Wed Apr 17 11:42:40 2013 New Revision: 249583 URL: http://svnweb.freebsd.org/changeset/base/249583 Log: - Correct mispellings of the word necessary Submitted by: Christoph Mallon (via private mail) Modified: head/include/rpcsvc/ypxfrd.x head/sys/dev/cas/if_casvar.h head/sys/dev/xen/netback/netback.c head/sys/fs/devfs/devfs_devs.c head/sys/fs/msdosfs/msdosfs_conv.c head/sys/kern/imgact_gzip.c head/sys/netgraph/ng_base.c head/usr.sbin/nandsim/nandsim_cfgparse.c Modified: head/include/rpcsvc/ypxfrd.x ============================================================================== --- head/include/rpcsvc/ypxfrd.x Wed Apr 17 11:40:10 2013 (r249582) +++ head/include/rpcsvc/ypxfrd.x Wed Apr 17 11:42:40 2013 (r249583) @@ -75,7 +75,7 @@ const _YPMAXDOMAIN = 64; const _YPMAXMAP = 64; const _YPMAXPEER = 64; -/* Suggested default -- not necesarrily the one used. */ +/* Suggested default -- not necessarily the one used. */ const YPXFRBLOCK = 32767; /* Modified: head/sys/dev/cas/if_casvar.h ============================================================================== --- head/sys/dev/cas/if_casvar.h Wed Apr 17 11:40:10 2013 (r249582) +++ head/sys/dev/cas/if_casvar.h Wed Apr 17 11:42:40 2013 (r249583) @@ -56,7 +56,7 @@ /* * Receive completion ring size - we have one completion per - * incoming packet (though the opposite isn't necesarrily true), + * incoming packet (though the opposite isn't necessarily true), * so this logic is a little simpler. */ #define CAS_NRXCOMP 4096 Modified: head/sys/dev/xen/netback/netback.c ============================================================================== --- head/sys/dev/xen/netback/netback.c Wed Apr 17 11:40:10 2013 (r249582) +++ head/sys/dev/xen/netback/netback.c Wed Apr 17 11:42:40 2013 (r249583) @@ -1816,7 +1816,7 @@ xnb_recv(netif_tx_back_ring_t *txb, domi /* * if we got here, then 1 or more requests was consumed, but the packet - * is not necesarily valid. + * is not necessarily valid. */ if (xnb_pkt_is_valid(&pkt) == 0) { /* got a garbage packet, respond and drop it */ Modified: head/sys/fs/devfs/devfs_devs.c ============================================================================== --- head/sys/fs/devfs/devfs_devs.c Wed Apr 17 11:40:10 2013 (r249582) +++ head/sys/fs/devfs/devfs_devs.c Wed Apr 17 11:42:40 2013 (r249583) @@ -655,7 +655,7 @@ devfs_cleanup(struct devfs_mount *dm) /* * devfs_create() and devfs_destroy() are called from kern_conf.c and * in both cases the devlock() mutex is held, so no further locking - * is necesary and no sleeping allowed. + * is necessary and no sleeping allowed. */ void Modified: head/sys/fs/msdosfs/msdosfs_conv.c ============================================================================== --- head/sys/fs/msdosfs/msdosfs_conv.c Wed Apr 17 11:40:10 2013 (r249582) +++ head/sys/fs/msdosfs/msdosfs_conv.c Wed Apr 17 11:42:40 2013 (r249583) @@ -774,7 +774,7 @@ winSlotCnt(un, unlen, pmp) } /* - * Determine the number of bytes neccesary for Win95 names + * Determine the number of bytes neccessary for Win95 names */ size_t winLenFixup(un, unlen) Modified: head/sys/kern/imgact_gzip.c ============================================================================== --- head/sys/kern/imgact_gzip.c Wed Apr 17 11:40:10 2013 (r249582) +++ head/sys/kern/imgact_gzip.c Wed Apr 17 11:42:40 2013 (r249583) @@ -18,7 +18,7 @@ * inflate isn't quite reentrant yet... * error-handling is a mess... * so is the rest... - * tidy up unnecesary includes + * tidy up unnecessary includes */ #include Modified: head/sys/netgraph/ng_base.c ============================================================================== --- head/sys/netgraph/ng_base.c Wed Apr 17 11:40:10 2013 (r249582) +++ head/sys/netgraph/ng_base.c Wed Apr 17 11:42:40 2013 (r249583) @@ -92,7 +92,7 @@ static void ng_dumphooks(void); #endif /* NETGRAPH_DEBUG */ /* * DEAD versions of the structures. - * In order to avoid races, it is sometimes neccesary to point + * In order to avoid races, it is sometimes necessary to point * at SOMETHING even though theoretically, the current entity is * INVALID. Use these to avoid these races. */ Modified: head/usr.sbin/nandsim/nandsim_cfgparse.c ============================================================================== --- head/usr.sbin/nandsim/nandsim_cfgparse.c Wed Apr 17 11:40:10 2013 (r249582) +++ head/usr.sbin/nandsim/nandsim_cfgparse.c Wed Apr 17 11:42:40 2013 (r249583) @@ -575,7 +575,7 @@ parse_config(char *cfgfname, const char /* * Function tries to get appropriate value for given key, convert it to - * array of ints (of given size), and perform all the neccesary checks and + * array of ints (of given size), and perform all the necessary checks and * conversions. */ static int