commit | 555fbf875806a12eaf702a99431627977c59c08f | [log] [tgz] |
---|---|---|
author | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Wed Feb 04 17:11:55 2015 +0000 |
committer | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Wed Feb 04 17:11:55 2015 +0000 |
tree | 425c076e00b5fb80ec91bdaf98fd4150002cdc45 | |
parent | aa422b2f1ab5c00bac5f0c63834861662e0de7c9 [diff] [blame] |
Support composite RDNs in X.509 certs parsing
diff --git a/library/x509_crt.c b/library/x509_crt.c index e114c0f..d1d7d73 100644 --- a/library/x509_crt.c +++ b/library/x509_crt.c
@@ -1652,6 +1652,10 @@ if( x509_string_cmp( &a->val, &b->val ) != 0 ) return( -1 ); + /* structure of the list of sets */ + if( a->next_merged != b->next_merged ) + return( -1 ); + a = a->next; b = b->next; }