diff options
author | 2001-03-24 19:27:18 +0000 | |
---|---|---|
committer | 2001-03-24 19:27:18 +0000 | |
commit | 5dda8fb5ca41efd22e18dcb59e2ed52a7526fd51 (patch) | |
tree | 2f57268846d1e60733ef977000dadb7814230b57 | |
parent | fix usage when called as invalid binary name; <raj@cerias.purdue.edu> (diff) | |
download | wireguard-openbsd-5dda8fb5ca41efd22e18dcb59e2ed52a7526fd51.tar.xz wireguard-openbsd-5dda8fb5ca41efd22e18dcb59e2ed52a7526fd51.zip |
cleanup error message
-rw-r--r-- | usr.sbin/user/user.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/user/user.c b/usr.sbin/user/user.c index 2136b7d3b01..d91b53ac03c 100644 --- a/usr.sbin/user/user.c +++ b/usr.sbin/user/user.c @@ -1,4 +1,4 @@ -/* $OpenBSD: user.c,v 1.22 2001/03/24 19:24:07 jakob Exp $ */ +/* $OpenBSD: user.c,v 1.23 2001/03/24 19:27:18 jakob Exp $ */ /* $NetBSD: user.c,v 1.17 2000/04/14 06:26:55 simonb Exp $ */ /* @@ -1116,7 +1116,7 @@ usermgmt_usage(char *prog) (void) fprintf(stderr, "usage: %s [-e] [-v] group\n", prog); #endif } else { - (void) fprintf(stderr, "This program must be called as user{info,mod,del} or group{info,mod,del},\n%s is not an understood name.\n", prog); + (void) fprintf(stderr, "This program must be called as {user,group}{add,del,mod,info},\n%s is not an understood name.\n", prog); } exit(EXIT_FAILURE); /* NOTREACHED */ |