summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2012-12-14 23:29:58 +0000
committerDr. Stephen Henson <steve@openssl.org>2012-12-14 23:29:58 +0000
commit92821996de4a381635f5d048345c3b0f8fe9a30b (patch)
tree68b489848580c839d0236e9a08e375d85aca747d /apps
parent11e2957d5f4208dc9e1929a4957f2cde79a94718 (diff)
oops, revert, committed in error
Diffstat (limited to 'apps')
-rw-r--r--apps/ocsp.c31
1 files changed, 4 insertions, 27 deletions
diff --git a/apps/ocsp.c b/apps/ocsp.c
index f5e37a6358..16aa23b6f6 100644
--- a/apps/ocsp.c
+++ b/apps/ocsp.c
@@ -148,7 +148,6 @@ int MAIN(int argc, char **argv)
long nsec = MAX_VALIDITY_PERIOD, maxage = -1;
char *CAfile = NULL, *CApath = NULL;
X509_STORE *store = NULL;
- X509_VERIFY_PARAM *vpm = NULL;
STACK_OF(X509) *sign_other = NULL, *verify_other = NULL, *rother = NULL;
char *sign_certfile = NULL, *verify_certfile = NULL, *rcertfile = NULL;
unsigned long sign_flags = 0, verify_flags = 0, rflags = 0;
@@ -357,12 +356,6 @@ int MAIN(int argc, char **argv)
}
else badarg = 1;
}
- else if (args_verify(&args, NULL, &badarg, bio_err, &vpm))
- {
- if (badarg)
- goto end;
- continue;
- }
else if (!strcmp (*args, "-validity_period"))
{
if (args[1])
@@ -644,10 +637,7 @@ int MAIN(int argc, char **argv)
if (!req && reqin)
{
- if (!strcmp(reqin, "-"))
- derbio = BIO_new_fp(stdin, BIO_NOCLOSE);
- else
- derbio = BIO_new_file(reqin, "rb");
+ derbio = BIO_new_file(reqin, "rb");
if (!derbio)
{
BIO_printf(bio_err, "Error Opening OCSP request file\n");
@@ -749,10 +739,7 @@ int MAIN(int argc, char **argv)
if (reqout)
{
- if (!strcmp(respout, "-"))
- derbio = BIO_new_fp(stdout, BIO_NOCLOSE);
- else
- derbio = BIO_new_file(reqout, "wb");
+ derbio = BIO_new_file(reqout, "wb");
if(!derbio)
{
BIO_printf(bio_err, "Error opening file %s\n", reqout);
@@ -795,10 +782,7 @@ int MAIN(int argc, char **argv)
}
else if (respin)
{
- if (!strcmp(respin, "-"))
- derbio = BIO_new_fp(stdin, BIO_NOCLOSE);
- else
- derbio = BIO_new_file(respin, "rb");
+ derbio = BIO_new_file(respin, "rb");
if (!derbio)
{
BIO_printf(bio_err, "Error Opening OCSP response file\n");
@@ -823,10 +807,7 @@ int MAIN(int argc, char **argv)
if (respout)
{
- if (!strcmp(respout, "-"))
- derbio = BIO_new_fp(stdout, BIO_NOCLOSE);
- else
- derbio = BIO_new_file(respout, "wb");
+ derbio = BIO_new_file(respout, "wb");
if(!derbio)
{
BIO_printf(bio_err, "Error opening file %s\n", respout);
@@ -873,8 +854,6 @@ int MAIN(int argc, char **argv)
store = setup_verify(bio_err, CAfile, CApath);
if (!store)
goto end;
- if (vpm)
- X509_STORE_set1_param(store, vpm);
if (verify_certfile)
{
verify_other = load_certs(bio_err, verify_certfile, FORMAT_PEM,
@@ -925,8 +904,6 @@ end:
ERR_print_errors(bio_err);
X509_free(signer);
X509_STORE_free(store);
- if (vpm)
- X509_VERIFY_PARAM_free(vpm);
EVP_PKEY_free(key);
EVP_PKEY_free(rkey);
X509_free(issuer);