svn commit: r291609 - head/usr.bin/rctl

Garrett Cooper ngie at FreeBSD.org
Tue Dec 1 19:37:26 UTC 2015


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


More information about the svn-src-all mailing list