svn commit: r258841 - head/usr.sbin/ctld

Edward Tomasz Napierala trasz at FreeBSD.org
Mon Dec 2 09:23:36 UTC 2013


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);


More information about the svn-src-head mailing list