From owner-svn-src-head@freebsd.org Wed May 18 15:25:46 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 A5D64B41BE6; Wed, 18 May 2016 15:25:46 +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 5E1721EFA; Wed, 18 May 2016 15:25:46 +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 u4IFPjXV024845; Wed, 18 May 2016 15:25:45 GMT (envelope-from pfg@FreeBSD.org) Received: (from pfg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u4IFPjT8024841; Wed, 18 May 2016 15:25:45 GMT (envelope-from pfg@FreeBSD.org) Message-Id: <201605181525.u4IFPjT8024841@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pfg set sender to pfg@FreeBSD.org using -f From: "Pedro F. Giffuni" Date: Wed, 18 May 2016 15:25:45 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r300152 - head/lib/libutil 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: Wed, 18 May 2016 15:25:46 -0000 Author: pfg Date: Wed May 18 15:25:45 2016 New Revision: 300152 URL: https://svnweb.freebsd.org/changeset/base/300152 Log: libutil: minor spelling fixes. Modified: head/lib/libutil/login_auth.c head/lib/libutil/login_cap.c head/lib/libutil/pidfile.3 head/lib/libutil/pidfile.c Modified: head/lib/libutil/login_auth.c ============================================================================== --- head/lib/libutil/login_auth.c Wed May 18 15:25:19 2016 (r300151) +++ head/lib/libutil/login_auth.c Wed May 18 15:25:45 2016 (r300152) @@ -55,7 +55,7 @@ __FBSDID("$FreeBSD$"); /* * auth_checknologin() - * Checks for the existance of a nologin file in the login_cap + * Checks for the existence of a nologin file in the login_cap * capability . If there isn't one specified, then it checks * to see if this class should just ignore nologin files. Lastly, * it tries to print out the default nologin file, and, if such Modified: head/lib/libutil/login_cap.c ============================================================================== --- head/lib/libutil/login_cap.c Wed May 18 15:25:19 2016 (r300151) +++ head/lib/libutil/login_cap.c Wed May 18 15:25:45 2016 (r300152) @@ -742,7 +742,7 @@ login_getcapsize(login_cap_t *lc, const /* * login_getcapbool() - * From the login_cap_t , check for the existance of the capability + * From the login_cap_t , check for the existence of the capability * of . Return if ->lc_cap is NULL, otherwise return * the whether or not exists there. */ Modified: head/lib/libutil/pidfile.3 ============================================================================== --- head/lib/libutil/pidfile.3 Wed May 18 15:25:19 2016 (r300151) +++ head/lib/libutil/pidfile.3 Wed May 18 15:25:45 2016 (r300152) @@ -151,7 +151,7 @@ if (pfh == NULL) { /* If we cannot create pidfile from other reasons, only warn. */ warn("Cannot open or create pidfile"); /* - * Eventhough pfh is NULL we can continue, as the other pidfile_* + * Even though pfh is NULL we can continue, as the other pidfile_* * function can handle such situation by doing nothing except setting * errno to EDOOFUS. */ Modified: head/lib/libutil/pidfile.c ============================================================================== --- head/lib/libutil/pidfile.c Wed May 18 15:25:19 2016 (r300151) +++ head/lib/libutil/pidfile.c Wed May 18 15:25:45 2016 (r300152) @@ -119,7 +119,7 @@ pidfile_open(const char *path, mode_t mo /* * Open the PID file and obtain exclusive lock. - * We truncate PID file here only to remove old PID immediatelly, + * We truncate PID file here only to remove old PID immediately, * PID file will be truncated again in pidfile_write(), so * pidfile_write() can be called multiple times. */