Sync usage() with reality and sort it alphabetically.

PR:		42620
Submitted by:	Jeff Ito
MFC after:	1 month
This commit is contained in:
Tim J. Robbins 2002-10-18 11:48:46 +00:00
parent 7c5bf58a15
commit 50a4cf33ca
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=105393

View File

@ -626,10 +626,11 @@ static void
usage(void)
{
fprintf(stderr, "%s\n%s\n%s\n",
"usage: syslogd [-46Adnsuv] [-a allowed_peer] [-f config_file]",
" [-m mark_interval] [-l log_socket]",
" [-p log_socket] [-P pid_file]");
fprintf(stderr, "%s\n%s\n%s\n%s\n",
"usage: syslogd [-46Acdknosuv] [-a allowed_peer]",
" [-b bind address] [-f config_file]",
" [-l log_socket] [-m mark_interval]",
" [-P pid_file] [-p log_socket]");
exit(1);
}