summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRich Salz <rsalz@akamai.com>2014-07-16 16:24:21 -0400
committerRich Salz <rsalz@akamai.com>2014-07-16 16:24:21 -0400
commit1c0a7bf43d8f0a51feb0e8469f82a123d8e657fb (patch)
treec66603a73615f1d357b0237e5dbc47f21fae46ea
parent887af4fbffecd36851189b36d6562380c2692115 (diff)
downloadopenssl-new-rsalz-monolith.tar.gz
Fix -DTEST version of opt.crsalz-monolith
-rw-r--r--apps/opt.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/apps/opt.c b/apps/opt.c
index cb996fbb0d..bc5f3b039e 100644
--- a/apps/opt.c
+++ b/apps/opt.c
@@ -703,9 +703,9 @@ void opt_help(const OPTIONS* list)
#include <sys/stat.h>
enum options {
- OPT_ERR=-1, OPT_EOF=0, OPT_NOTUSED, OPT_HELP,
+ OPT_ERR=-1, OPT_EOF=0, OPT_HELP,
OPT_IN, OPT_INFORM, OPT_OUT, OPT_COUNT, OPT_U, OPT_FLAG,
- OPT_STR, OPT_HELP
+ OPT_STR, OPT_NOTUSED
};
static OPTIONS options[] = {
{ OPT_HELP_STR, 1, '-', "Usage: %s flags\n" },
@@ -719,7 +719,6 @@ static OPTIONS options[] = {
{ "u", OPT_U, 'u', "an unsigned number" },
{ "flag", OPT_FLAG, 0, "just some flag" },
{ "str", OPT_STR, 's', "the magic word" },
- { "help", OPT_HELP, '-', "get this output" },
{ "areallyverylongoption", OPT_HELP, '-', "long way for help" },
{ NULL }
};
@@ -746,8 +745,7 @@ int main(int ac, char **av)
case OPT_NOTUSED:
case OPT_EOF:
case OPT_ERR:
- case OPT_HELP:
- printf("Usage error; try -help.");
+ printf("Usage error; try -help.\n");
return -1;
case OPT_HELP:
opt_help(options);