summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorPauli <paul.dale@oracle.com>2019-05-07 11:10:33 +1000
committerPauli <paul.dale@oracle.com>2019-05-08 09:52:58 +1000
commit0dc6bf3c39732aea7bc049d145c395bbec895f52 (patch)
treebede15dd3f0a5f2667b8681c291158754b685f86 /apps
parent1f760760952b866d53b1ad9b457e1d6027e71c6c (diff)
Coverity CID 1444950: Control flow issues
Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/8888)
Diffstat (limited to 'apps')
-rw-r--r--apps/info.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/info.c b/apps/info.c
index aa019ad19e..a2c359e0f8 100644
--- a/apps/info.c
+++ b/apps/info.c
@@ -42,8 +42,7 @@ int info_main(int argc, char **argv)
prog = opt_init(argc, argv, info_options);
while ((o = opt_next()) != OPT_EOF) {
switch (o) {
- case OPT_EOF:
- case OPT_ERR:
+ default:
opthelp:
BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
goto end;