summaryrefslogtreecommitdiff
path: root/usr.bin/openssl
diff options
context:
space:
mode:
authorrob <rob@cvs.openbsd.org>2018-08-16 10:26:35 +0000
committerrob <rob@cvs.openbsd.org>2018-08-16 10:26:35 +0000
commit8a50314735ab0596a854b20101cd3b2ada59d66e (patch)
treec1300ff9235303f7511cec5f3ac26ced3fe01241 /usr.bin/openssl
parent629846ce6e5b8ff44afedb99829385b03f765cf7 (diff)
Remove unused variable.
From Nan at chinadtrace dot org. Thanks!
Diffstat (limited to 'usr.bin/openssl')
-rw-r--r--usr.bin/openssl/apps.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/usr.bin/openssl/apps.c b/usr.bin/openssl/apps.c
index 90baf65a9f5..55a455069e8 100644
--- a/usr.bin/openssl/apps.c
+++ b/usr.bin/openssl/apps.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: apps.c,v 1.47 2018/02/07 08:57:25 jsing Exp $ */
+/* $OpenBSD: apps.c,v 1.48 2018/08/16 10:26:34 rob Exp $ */
/*
* Copyright (c) 2014 Joel Sing <jsing@openbsd.org>
*
@@ -2050,12 +2050,10 @@ policies_print(BIO *out, X509_STORE_CTX *ctx)
{
X509_POLICY_TREE *tree;
int explicit_policy;
- int free_out = 0;
- if (out == NULL) {
+ if (out == NULL)
out = BIO_new_fp(stderr, BIO_NOCLOSE);
- free_out = 1;
- }
+
tree = X509_STORE_CTX_get0_policy_tree(ctx);
explicit_policy = X509_STORE_CTX_get_explicit_policy(ctx);