aboutsummaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2006-10-05 21:59:50 +0000
committerDr. Stephen Henson <steve@openssl.org>2006-10-05 21:59:50 +0000
commit55a08fac680d5f35096c54ef2fdc6185c314fc89 (patch)
tree95a227dd8dbb0dcc88802e500150a0b4e5b1a8f6 /crypto
parent2fc281d01f76c42e80f25e8dfd3e4161c2f53a47 (diff)
downloadopenssl-55a08fac680d5f35096c54ef2fdc6185c314fc89.tar.gz
Typo.
Diffstat (limited to 'crypto')
-rw-r--r--crypto/x509v3/pcy_tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/x509v3/pcy_tree.c b/crypto/x509v3/pcy_tree.c
index 1c68ce3352..846a903e93 100644
--- a/crypto/x509v3/pcy_tree.c
+++ b/crypto/x509v3/pcy_tree.c
@@ -197,7 +197,7 @@ static int tree_init(X509_POLICY_TREE **ptree, STACK_OF(X509) *certs,
/* Any matching allowed if certificate is self
* issued and not the last in the chain.
*/
- if (!(x->ex_flags && EXFLAG_SS) || (i == 0))
+ if (!(x->ex_flags & EXFLAG_SS) || (i == 0))
level->flags |= X509_V_FLAG_INHIBIT_ANY;
}
else