summaryrefslogtreecommitdiff
path: root/src/usr.bin/openssl/apps.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/usr.bin/openssl/apps.c')
-rw-r--r--src/usr.bin/openssl/apps.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/usr.bin/openssl/apps.c b/src/usr.bin/openssl/apps.c
index c9a2f34b25..2c2f128484 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.54 2019/07/14 03:30:45 guenther Exp $ */ 1/* $OpenBSD: apps.c,v 1.55 2020/09/09 12:47:46 inoguchi Exp $ */
2/* 2/*
3 * Copyright (c) 2014 Joel Sing <jsing@openbsd.org> 3 * Copyright (c) 2014 Joel Sing <jsing@openbsd.org>
4 * 4 *
@@ -2299,6 +2299,10 @@ options_parse(int argc, char **argv, const struct option *opts, char **unnamed,
2299 *opt->opt.value |= opt->value; 2299 *opt->opt.value |= opt->value;
2300 break; 2300 break;
2301 2301
2302 case OPTION_UL_VALUE_OR:
2303 *opt->opt.ulvalue |= opt->ulvalue;
2304 break;
2305
2302 default: 2306 default:
2303 fprintf(stderr, "option %s - unknown type %i\n", 2307 fprintf(stderr, "option %s - unknown type %i\n",
2304 opt->name, opt->type); 2308 opt->name, opt->type);