2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-28 12:57:50 +00:00

fixed usage()

This commit is contained in:
Todd C. Miller 1996-06-09 03:15:12 +00:00
parent 99e16a5a25
commit 319a9ffe51

2
sudo.c
View File

@ -618,7 +618,7 @@ static int parse_args()
static void usage(exit_val)
int exit_val;
{
(void) fprintf(stderr, "usage: %s -V | -h | -l | -v | -k | [-b] [-p prompt] [-u username] -s | <command>\n", Argv[0]);
(void) fprintf(stderr, "usage: %s -V | -h | -l | -v | -k | [-b] [-p prompt] [-u username/#uid] -s | <command>\n", Argv[0]);
exit(exit_val);
}