diff options
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/libcrypto/x509/x509_purp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/x509/x509_purp.c b/src/lib/libcrypto/x509/x509_purp.c index 3b8bd6b81c..c81e043f9d 100644 --- a/src/lib/libcrypto/x509/x509_purp.c +++ b/src/lib/libcrypto/x509/x509_purp.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: x509_purp.c,v 1.3 2021/03/13 23:01:49 tobhe Exp $ */ | 1 | /* $OpenBSD: x509_purp.c,v 1.4 2021/03/19 18:52:14 tb Exp $ */ |
2 | /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL | 2 | /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL |
3 | * project 2001. | 3 | * project 2001. |
4 | */ | 4 | */ |
@@ -571,7 +571,7 @@ x509v3_cache_extensions(X509 *x) | |||
571 | if (x->skid == NULL && i != -1) | 571 | if (x->skid == NULL && i != -1) |
572 | x->ex_flags |= EXFLAG_INVALID; | 572 | x->ex_flags |= EXFLAG_INVALID; |
573 | x->akid = X509_get_ext_d2i(x, NID_authority_key_identifier, &i, NULL); | 573 | x->akid = X509_get_ext_d2i(x, NID_authority_key_identifier, &i, NULL); |
574 | if (x->skid == NULL && i != -1) | 574 | if (x->akid == NULL && i != -1) |
575 | x->ex_flags |= EXFLAG_INVALID; | 575 | x->ex_flags |= EXFLAG_INVALID; |
576 | 576 | ||
577 | /* Does subject name match issuer? */ | 577 | /* Does subject name match issuer? */ |