summaryrefslogtreecommitdiffstats
path: root/crypto/x509v3/v3_asid.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2011-01-03 01:40:53 +0000
committerDr. Stephen Henson <steve@openssl.org>2011-01-03 01:40:53 +0000
commit85881c1d92cccda9ba26131a9102492de28a5a04 (patch)
treee38aef60a3055ad6212297247f755ebe82c1dc7d /crypto/x509v3/v3_asid.c
parent968062b7d3a282467cef10bb687fe045b169eae2 (diff)
PR: 2411
Submitted by: Rob Austein <sra@hactrn.net> Reviewed by: steve Fix corner cases in RFC3779 code.
Diffstat (limited to 'crypto/x509v3/v3_asid.c')
-rw-r--r--crypto/x509v3/v3_asid.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/x509v3/v3_asid.c b/crypto/x509v3/v3_asid.c
index 2b8c0a0824..da0029a011 100644
--- a/crypto/x509v3/v3_asid.c
+++ b/crypto/x509v3/v3_asid.c
@@ -372,7 +372,7 @@ static int ASIdentifierChoice_is_canonical(ASIdentifierChoice *choice)
int v3_asid_is_canonical(ASIdentifiers *asid)
{
return (asid == NULL ||
- (ASIdentifierChoice_is_canonical(asid->asnum) ||
+ (ASIdentifierChoice_is_canonical(asid->asnum) &&
ASIdentifierChoice_is_canonical(asid->rdi)));
}