From: Dr. Stephen Henson Date: Mon, 25 Jul 2005 18:39:44 +0000 (+0000) Subject: Typo which prevents mult valued RDNs being created. X-Git-Tag: OpenSSL_0_9_8k^2~1903 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5e64f8c44c4532ff9646180f40d376790aa8af78;p=openssl Typo which prevents mult valued RDNs being created. --- diff --git a/crypto/x509v3/v3_utl.c b/crypto/x509v3/v3_utl.c index 191cfef1a5..7911c4bdaf 100644 --- a/crypto/x509v3/v3_utl.c +++ b/crypto/x509v3/v3_utl.c @@ -826,13 +826,13 @@ int X509V3_NAME_from_section(X509_NAME *nm, STACK_OF(CONF_VALUE)*dn_sk, break; } #ifndef CHARSET_EBCDIC - if (*p == '+') + if (*type == '+') #else - if (*p == os_toascii['+']) + if (*type == os_toascii['+']) #endif { mval = -1; - p++; + type++; } else mval = 0;