From owner-svn-src-all@freebsd.org Tue Dec 1 19:37:26 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 10BF4A3E400; Tue, 1 Dec 2015 19:37:26 +0000 (UTC) (envelope-from ngie@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 D39461DA9; Tue, 1 Dec 2015 19:37:25 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tB1JbPjY065409; Tue, 1 Dec 2015 19:37:25 GMT (envelope-from ngie@FreeBSD.org) Received: (from ngie@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tB1JbPpG065408; Tue, 1 Dec 2015 19:37:25 GMT (envelope-from ngie@FreeBSD.org) Message-Id: <201512011937.tB1JbPpG065408@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ngie set sender to ngie@FreeBSD.org using -f From: Garrett Cooper Date: Tue, 1 Dec 2015 19:37:25 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r291609 - head/usr.bin/rctl X-SVN-Group: head 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: Tue, 01 Dec 2015 19:37:26 -0000 Author: ngie Date: Tue Dec 1 19:37:24 2015 New Revision: 291609 URL: https://svnweb.freebsd.org/changeset/base/291609 Log: Fix typos in error messages dealing with unknown groups/users MFC after: 1 month X-MFC with: r291447, r291452 Sponsored by: EMC / Isilon Storage Division Modified: head/usr.bin/rctl/rctl.c Modified: head/usr.bin/rctl/rctl.c ============================================================================== --- head/usr.bin/rctl/rctl.c Tue Dec 1 19:20:38 2015 (r291608) +++ head/usr.bin/rctl/rctl.c Tue Dec 1 19:37:24 2015 (r291609) @@ -64,7 +64,7 @@ parse_user(const char *s, id_t *uidp, co } if (!isnumber(s[0])) { - warnx("malformed rule '%s': uknown user '%s'", + warnx("malformed rule '%s': unknown user '%s'", unexpanded_rule, s); return (1); } @@ -92,7 +92,7 @@ parse_group(const char *s, id_t *gidp, c } if (!isnumber(s[0])) { - warnx("malformed rule '%s': uknown group '%s'", + warnx("malformed rule '%s': unknown group '%s'", unexpanded_rule, s); return (1); }