diff options
Diffstat (limited to 'openssl/trunk/crypto')
-rw-r--r-- | openssl/trunk/crypto/x509v3/v3_asid.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openssl/trunk/crypto/x509v3/v3_asid.c b/openssl/trunk/crypto/x509v3/v3_asid.c index a2b374e0..1473e16b 100644 --- a/openssl/trunk/crypto/x509v3/v3_asid.c +++ b/openssl/trunk/crypto/x509v3/v3_asid.c @@ -326,9 +326,9 @@ static void *v2i_ASIdentifiers(struct v3_ext_method *method, /* * Figure out whether this is an AS or an RDI. */ - if (!strcmp(val->name, "as")) { + if ( !name_cmp(val->name, "as")) { choice = &asid->asnum; - } else if (!strcmp(val->name, "rdi")) { + } else if (!name_cmp(val->name, "rdi")) { choice = &asid->rdi; } else { X509V3err(X509V3_F_V2I_ASIDENTIFIERS, X509V3_R_EXTENSION_NAME_ERROR); |