aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorBen Laurie <ben@openssl.org>2012-12-11 16:05:14 +0000
committerBen Laurie <ben@openssl.org>2012-12-11 16:05:14 +0000
commitfefc111a2a0070aa51fd59b7e9db652098ee5c06 (patch)
treeeee09063a42d416d0ab5e19eef2d61bdb9e33dde /apps
parentb204ab650636ae2ea794c4c5b2f324977f62da99 (diff)
downloadopenssl-fefc111a2a0070aa51fd59b7e9db652098ee5c06.tar.gz
Make openssl verify return errors.
Diffstat (limited to 'apps')
-rw-r--r--apps/verify.c16
1 files changed, 12 insertions, 4 deletions
diff --git a/apps/verify.c b/apps/verify.c
index bcca114efe..b03085bf87 100644
--- a/apps/verify.c
+++ b/apps/verify.c
@@ -228,11 +228,19 @@ int MAIN(int argc, char **argv)
if (crl_download)
store_setup_crl_download(cert_ctx);
- if (argc < 1) check(cert_ctx, NULL, untrusted, trusted, crls, e);
+ ret=0;
+ if (argc < 1)
+ {
+ if (1 != check(cert_ctx, NULL, untrusted, trusted, crls, e))
+ ret=-1;
+ }
else
+ {
for (i=0; i<argc; i++)
- check(cert_ctx,argv[i], untrusted, trusted, crls, e);
- ret=0;
+ if (1 != check(cert_ctx,argv[i], untrusted, trusted, crls, e))
+ ret=-1;
+ }
+
end:
if (ret == 1) {
BIO_printf(bio_err,"usage: verify [-verbose] [-CApath path] [-CAfile file] [-purpose purpose] [-crl_check]");
@@ -267,7 +275,7 @@ end:
sk_X509_pop_free(trusted, X509_free);
sk_X509_CRL_pop_free(crls, X509_CRL_free);
apps_shutdown();
- OPENSSL_EXIT(ret);
+ OPENSSL_EXIT(ret < 0 ? 2 : ret);
}
static int check(X509_STORE *ctx, char *file,