summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorViktor Dukhovni <openssl-users@dukhovni.org>2018-03-08 10:51:46 -0500
committerViktor Dukhovni <openssl-users@dukhovni.org>2018-03-08 17:14:52 -0500
commita7fb4fa1708c65c0932133dca64a53d0237312e3 (patch)
treeb19ca367ba1f95225ea9f96fc1532b2ce8d06480 /apps
parent9300f078b6b6a83acd9aabcca89577f1a7800a6f (diff)
Make OCSP "multi" compatible with "no-sock" builds.
Reviewed-by: Matt Caswell <matt@openssl.org>
Diffstat (limited to 'apps')
-rw-r--r--apps/ocsp.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/apps/ocsp.c b/apps/ocsp.c
index 6de0117d06..82c11e8b60 100644
--- a/apps/ocsp.c
+++ b/apps/ocsp.c
@@ -230,9 +230,7 @@ int ocsp_main(int argc, char **argv)
int accept_count = -1, add_nonce = 1, noverify = 0, use_ssl = -1;
int vpmtouched = 0, badsig = 0, i, ignore_err = 0, nmin = 0, ndays = -1;
int req_text = 0, resp_text = 0, ret = 1;
-# ifndef OPENSSL_NO_SOCK
int req_timeout = -1;
-# endif
long nsec = MAX_VALIDITY_PERIOD, maxage = -1;
unsigned long sign_flags = 0, verify_flags = 0, rflags = 0;
OPTION_CHOICE o;
@@ -483,11 +481,11 @@ int ocsp_main(int argc, char **argv)
goto opthelp;
trailing_md = 1;
break;
-# ifdef OCSP_DAEMON
case OPT_MULTI:
+# ifdef OCSP_DAEMON
multi = atoi(opt_arg());
- break;
# endif
+ break;
}
}
if (trailing_md) {