ref: 44e918935ca8cb67633bd42dad45b16a04e0f9ee
parent: 8064528230ac5bb7d3911b79716d6b60430f94ee
author: Krzysztof Nikiel <knik@users.sourceforge.net>
date: Mon Aug 21 11:36:47 EDT 2017
removed --help-long option, it was just an alias for -H
--- a/docs/faac.1
+++ b/docs/faac.1
@@ -34,10 +34,10 @@
.SH HELP OPTIONS
.TP
-.BR --help
+.BR -h
Short help on using FAAC
.TP
-.BR --help-long
+.BR -H
Description of all options for FAAC
.TP
.BR --license
--- a/frontend/main.c
+++ b/frontend/main.c
@@ -316,8 +316,8 @@
{case '?':
printf("Help options:\n"- "\t--help\t\tShort help on using FAAC\n"
- "\t--help-long\tDescription of all options for FAAC.\n"
+ "\t-h\t\tShort help on using FAAC\n"
+ "\t-H\t\tDescription of all options for FAAC.\n"
"\t--license\tLicense terms for FAAC.\n");
for (cnt = 0; g_help[cnt].id; cnt++)
printf("\t%s\t%s\n", g_help[cnt].option, g_help[cnt].name);@@ -490,7 +490,6 @@
{ static struct option long_options[] = { {"help", 0, 0, 'h'},- {"help-long", 0, 0, 'H'}, {"help-qual", 0, 0, HELP_QUAL}, {"help-io", 0, 0, HELP_IO}, {"help-mp4", 0, 0, HELP_MP4},--
⑨