diff options
author | Dr. David von Oheimb <David.von.Oheimb@siemens.com> | 2021-05-01 15:29:00 +0200 |
---|---|---|
committer | Dr. David von Oheimb <dev@ddvo.net> | 2021-05-05 20:48:20 +0200 |
commit | b0f960189b8696f878b163d7123afdb99dfdb738 (patch) | |
tree | 45facb234e41f7f1a832382e8b925beedd8eeb6a /apps/verify.c | |
parent | APPS: Slightly extend and improve documentation of the opt_ API (diff) | |
download | openssl-b0f960189b8696f878b163d7123afdb99dfdb738.tar.xz openssl-b0f960189b8696f878b163d7123afdb99dfdb738.zip |
APPS: Replace 'OPT_ERR = -1, OPT_EOF = 0, OPT_HELP' by OPT_COMMON macro
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15111)
Diffstat (limited to 'apps/verify.c')
-rw-r--r-- | apps/verify.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/verify.c b/apps/verify.c index 718174a83d..d66f137258 100644 --- a/apps/verify.c +++ b/apps/verify.c @@ -26,7 +26,7 @@ static int check(X509_STORE *ctx, const char *file, static int v_verbose = 0, vflags = 0; typedef enum OPTION_choice { - OPT_ERR = -1, OPT_EOF = 0, OPT_HELP, + OPT_COMMON, OPT_ENGINE, OPT_CAPATH, OPT_CAFILE, OPT_CASTORE, OPT_NOCAPATH, OPT_NOCAFILE, OPT_NOCASTORE, OPT_UNTRUSTED, OPT_TRUSTED, OPT_CRLFILE, OPT_CRL_DOWNLOAD, OPT_SHOW_CHAIN, |