diff options
Diffstat (limited to 'src/usr.bin/openssl/apps.h')
| -rw-r--r-- | src/usr.bin/openssl/apps.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/usr.bin/openssl/apps.h b/src/usr.bin/openssl/apps.h index 48e5ba3adb..10612a9c97 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.23 2019/07/14 03:30:45 guenther Exp $ */ | 1 | /* $OpenBSD: apps.h,v 1.24 2020/09/09 12:47:46 inoguchi 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 | * |
| @@ -303,6 +303,7 @@ struct option { | |||
| 303 | OPTION_VALUE, | 303 | OPTION_VALUE, |
| 304 | OPTION_VALUE_AND, | 304 | OPTION_VALUE_AND, |
| 305 | OPTION_VALUE_OR, | 305 | OPTION_VALUE_OR, |
| 306 | OPTION_UL_VALUE_OR, | ||
| 306 | } type; | 307 | } type; |
| 307 | union { | 308 | union { |
| 308 | char **arg; | 309 | char **arg; |
| @@ -312,9 +313,11 @@ struct option { | |||
| 312 | int (*func)(void); | 313 | int (*func)(void); |
| 313 | long *lvalue; | 314 | long *lvalue; |
| 314 | int *value; | 315 | int *value; |
| 316 | unsigned long *ulvalue; | ||
| 315 | time_t *tvalue; | 317 | time_t *tvalue; |
| 316 | } opt; | 318 | } opt; |
| 317 | const int value; | 319 | const int value; |
| 320 | const unsigned long ulvalue; | ||
| 318 | }; | 321 | }; |
| 319 | 322 | ||
| 320 | void options_usage(const struct option *opts); | 323 | void options_usage(const struct option *opts); |
