Date: Thu, 5 Dec 2013 16:14:57 +0000 (UTC) From: Edward Tomasz Napierala <trasz@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r258989 - stable/10/usr.sbin/ctld Message-ID: <201312051614.rB5GEvQv086406@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: trasz Date: Thu Dec 5 16:14:56 2013 New Revision: 258989 URL: http://svnweb.freebsd.org/changeset/base/258989 Log: MFC r258841: Fix typos. Approved by: re (gjb) Sponsored by: The FreeBSD Foundation Modified: stable/10/usr.sbin/ctld/parse.y Directory Properties: stable/10/usr.sbin/ctld/ (props changed) Modified: stable/10/usr.sbin/ctld/parse.y ============================================================================== --- stable/10/usr.sbin/ctld/parse.y Thu Dec 5 15:28:27 2013 (r258988) +++ stable/10/usr.sbin/ctld/parse.y Thu Dec 5 16:14:56 2013 (r258989) @@ -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);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201312051614.rB5GEvQv086406>