summaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1997-05-31 06:14:30 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1997-05-31 06:14:30 +0000
commitee6bfd4c9ebd1a02e16964d5cc9223c360ca3e80 (patch)
treed2fb23d5290c5447e62c4caeab93873531bfb93c /usr.sbin
parentbf0caa9f01ad0ebcad949f4ffe8d4dfc5fd37ccd (diff)
s/illegal/invalid/; jtc
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/chown/chown.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/chown/chown.c b/usr.sbin/chown/chown.c
index 194c0b74312..ae7bab45194 100644
--- a/usr.sbin/chown/chown.c
+++ b/usr.sbin/chown/chown.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: chown.c,v 1.4 1997/01/26 05:54:28 downsj Exp $ */
+/* $OpenBSD: chown.c,v 1.5 1997/05/31 06:14:29 deraadt Exp $ */
/*
* Copyright (c) 1988, 1993, 1994
@@ -41,7 +41,7 @@ static char copyright[] =
#ifndef lint
/* from: static char sccsid[] = "@(#)chown.c 8.8 (Berkeley) 4/4/94"; */
-static char *rcsid = "$Id: chown.c,v 1.4 1997/01/26 05:54:28 downsj Exp $";
+static char *rcsid = "$Id: chown.c,v 1.5 1997/05/31 06:14:29 deraadt Exp $";
#endif /* not lint */
#include <sys/param.h>
@@ -223,7 +223,7 @@ id(name, type)
if (errno)
err(1, "%s", name);
if (*ep != '\0')
- errx(1, "%s: illegal %s name", name, type);
+ errx(1, "%s: invalid %s name", name, type);
return (val);
}