From owner-svn-src-head@FreeBSD.ORG Mon Dec 2 09:23:36 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]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 13AA929B; Mon, 2 Dec 2013 09:23:36 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 002F7118B; Mon, 2 Dec 2013 09:23:35 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rB29NZec002285; Mon, 2 Dec 2013 09:23:35 GMT (envelope-from trasz@svn.freebsd.org) Received: (from trasz@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rB29NZjI002282; Mon, 2 Dec 2013 09:23:35 GMT (envelope-from trasz@svn.freebsd.org) Message-Id: <201312020923.rB29NZjI002282@svn.freebsd.org> From: Edward Tomasz Napierala Date: Mon, 2 Dec 2013 09:23:35 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r258841 - head/usr.sbin/ctld 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.16 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: Mon, 02 Dec 2013 09:23:36 -0000 Author: trasz Date: Mon Dec 2 09:23:34 2013 New Revision: 258841 URL: http://svnweb.freebsd.org/changeset/base/258841 Log: Fix typos. MFC after: 3 days Sponsored by: The FreeBSD Foundation Modified: head/usr.sbin/ctld/parse.y Modified: head/usr.sbin/ctld/parse.y ============================================================================== --- head/usr.sbin/ctld/parse.y Mon Dec 2 09:07:43 2013 (r258840) +++ head/usr.sbin/ctld/parse.y Mon Dec 2 09:23:34 2013 (r258841) @@ -300,7 +300,7 @@ auth_group_statement: AUTH_GROUP STR log_warnx("auth-group for target \"%s\" " "specified more than once", target->t_iqn); else - log_warnx("cannot mix auth-grup with explicit " + log_warnx("cannot mix auth-group with explicit " "authorisations for target \"%s\"", target->t_iqn); return (1); @@ -321,7 +321,7 @@ chap_statement: CHAP STR STR if (target->t_auth_group != NULL) { if (target->t_auth_group->ag_name != NULL) { - log_warnx("cannot mix auth-grup with explicit " + log_warnx("cannot mix auth-group with explicit " "authorisations for target \"%s\"", target->t_iqn); free($2); @@ -351,7 +351,7 @@ chap_mutual_statement: CHAP_MUTUAL STR S if (target->t_auth_group != NULL) { if (target->t_auth_group->ag_name != NULL) { - log_warnx("cannot mix auth-grup with explicit " + log_warnx("cannot mix auth-group with explicit " "authorisations for target \"%s\"", target->t_iqn); free($2);