summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/usr.bin/openssl/apps.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/usr.bin/openssl/apps.c b/src/usr.bin/openssl/apps.c
index 1a52e7681b..d3c31947f3 100644
--- a/src/usr.bin/openssl/apps.c
+++ b/src/usr.bin/openssl/apps.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: apps.c,v 1.21 2014/12/28 16:33:34 jsing Exp $ */ 1/* $OpenBSD: apps.c,v 1.22 2014/12/28 16:51:31 jsing Exp $ */
2/* 2/*
3 * Copyright (c) 2014 Joel Sing <jsing@openbsd.org> 3 * Copyright (c) 2014 Joel Sing <jsing@openbsd.org>
4 * 4 *
@@ -2292,7 +2292,7 @@ options_parse(int argc, char **argv, struct option *opts, char **unnamed,
2292 break; 2292 break;
2293 } 2293 }
2294 opt = &opts[j]; 2294 opt = &opts[j];
2295 if (opts->name == NULL && opts->type == 0) 2295 if (opt->name == NULL && opt->type == 0)
2296 goto unknown; 2296 goto unknown;
2297 2297
2298 if (opt->type == OPTION_ARG || 2298 if (opt->type == OPTION_ARG ||