summaryrefslogtreecommitdiff
path: root/src/usr.bin/openssl/verify.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/usr.bin/openssl/verify.c')
-rw-r--r--src/usr.bin/openssl/verify.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/usr.bin/openssl/verify.c b/src/usr.bin/openssl/verify.c
index 62ca63f01b..4975ad5b6e 100644
--- a/src/usr.bin/openssl/verify.c
+++ b/src/usr.bin/openssl/verify.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: verify.c,v 1.4 2015/09/11 14:30:23 bcook Exp $ */ 1/* $OpenBSD: verify.c,v 1.5 2015/10/10 22:28:51 doug 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 *
@@ -85,6 +85,11 @@ verify_main(int argc, char **argv)
85 X509_LOOKUP *lookup = NULL; 85 X509_LOOKUP *lookup = NULL;
86 X509_VERIFY_PARAM *vpm = NULL; 86 X509_VERIFY_PARAM *vpm = NULL;
87 87
88 if (single_execution) {
89 if (pledge("stdio rpath", NULL) == -1)
90 perror("pledge");
91 }
92
88 cert_ctx = X509_STORE_new(); 93 cert_ctx = X509_STORE_new();
89 if (cert_ctx == NULL) 94 if (cert_ctx == NULL)
90 goto end; 95 goto end;