summaryrefslogtreecommitdiff
path: root/src/usr.bin/openssl/apps.h
diff options
context:
space:
mode:
authorjsing <>2015-01-01 14:28:00 +0000
committerjsing <>2015-01-01 14:28:00 +0000
commit0b6ac712e3883cbf07cc2bb16dc77d0f10493bb1 (patch)
tree52c3f3229cdd16bfa071267fd9f4da37ecb3fed6 /src/usr.bin/openssl/apps.h
parent30a7ea03d09beabc9a226ef94189f68ebc49df46 (diff)
downloadopenbsd-0b6ac712e3883cbf07cc2bb16dc77d0f10493bb1.tar.gz
openbsd-0b6ac712e3883cbf07cc2bb16dc77d0f10493bb1.tar.bz2
openbsd-0b6ac712e3883cbf07cc2bb16dc77d0f10493bb1.zip
Provide option types for binary AND, binary OR and silently discarding an
option.
Diffstat (limited to 'src/usr.bin/openssl/apps.h')
-rw-r--r--src/usr.bin/openssl/apps.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/usr.bin/openssl/apps.h b/src/usr.bin/openssl/apps.h
index f0571480e2..dddfeeea7f 100644
--- a/src/usr.bin/openssl/apps.h
+++ b/src/usr.bin/openssl/apps.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: apps.h,v 1.12 2014/12/28 16:22:37 jsing Exp $ */ 1/* $OpenBSD: apps.h,v 1.13 2015/01/01 14:28:00 jsing Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -290,10 +290,13 @@ struct option {
290 OPTION_ARG_FORMAT, 290 OPTION_ARG_FORMAT,
291 OPTION_ARG_FUNC, 291 OPTION_ARG_FUNC,
292 OPTION_ARG_INT, 292 OPTION_ARG_INT,
293 OPTION_DISCARD,
293 OPTION_FUNC, 294 OPTION_FUNC,
294 OPTION_FLAG, 295 OPTION_FLAG,
295 OPTION_FLAG_ORD, 296 OPTION_FLAG_ORD,
296 OPTION_VALUE, 297 OPTION_VALUE,
298 OPTION_VALUE_AND,
299 OPTION_VALUE_OR,
297 } type; 300 } type;
298 union { 301 union {
299 char **arg; 302 char **arg;