1
0
mirror of https://gitlab.xiph.org/xiph/ezstream.git synced 2025-01-03 14:56:35 -05:00

The -c parameter is not optional.

git-svn-id: https://svn.xiph.org/trunk/ezstream@13587 0101bb08-14d6-0310-b084-bc0e0c8e3800
This commit is contained in:
moritz 2007-08-22 15:19:17 +00:00
parent 8acd8622d0
commit 4a4a0dc700
2 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@
.Nm
.Bk -words
.Op Fl hnqVv
.Op Fl c Ar configfile
.Fl c Ar configfile
.Ek
.Sh DESCRIPTION
The

View File

@ -1019,14 +1019,14 @@ ez_shutdown(int exitval)
void
usage(void)
{
printf("usage: %s [-hnqVv] [-c configfile]\n", __progname);
printf("usage: %s [-hnqVv] -c configfile\n", __progname);
}
void
usageHelp(void)
{
printf("\n");
printf(" -c configfile use XML configuration in configfile\n");
printf(" -c configfile use XML configuration in configfile (mandatory)\n");
printf(" -h display this additional help and exit\n");
printf(" -n normalize metadata strings\n");
printf(" -q suppress STDERR output from external en-/decoders\n");