diff options
| author | Ruslan Ermilov <ru@FreeBSD.org> | 2001-08-15 15:11:52 +0000 |
|---|---|---|
| committer | Ruslan Ermilov <ru@FreeBSD.org> | 2001-08-15 15:11:52 +0000 |
| commit | d143364652f974656b650b58f34362cbdf4c8ebe (patch) | |
| tree | fe1e4f1c570c5344911860b611c1403b0e5ab15d | |
| parent | ccb8bea4f004ee996833c323bdefce0f86943296 (diff) | |
Notes
| -rw-r--r-- | usr.bin/su/su.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/su/su.c b/usr.bin/su/su.c index 1664bec52c5a..79002df9589e 100644 --- a/usr.bin/su/su.c +++ b/usr.bin/su/su.c @@ -441,7 +441,9 @@ ok_to_export(const char *s) static void usage(void) { - errx(1, "usage: su [%s] [login [args]]", ARGSTR); + + (void)fprintf(stderr, "usage: su [-] [-flm] [-c class] [login [args]]"); + exit(1); } static int |
