Don't use @syntax for extended CRLDP format.

This commit is contained in:
Dr. Stephen Henson 2005-07-25 18:55:40 +00:00
parent 0745d0892d
commit 0c010a1517

View File

@ -309,10 +309,10 @@ static void *v2i_crld(X509V3_EXT_METHOD *method,
for(i = 0; i < sk_CONF_VALUE_num(nval); i++) {
DIST_POINT *point;
cnf = sk_CONF_VALUE_value(nval, i);
if (!cnf->value && cnf->name[0] == '@')
if (!cnf->value)
{
STACK_OF(CONF_VALUE) *dpsect;
dpsect = X509V3_get_section(ctx, cnf->name + 1);
dpsect = X509V3_get_section(ctx, cnf->name);
if (!dpsect)
goto err;
point = crldp_from_section(ctx, dpsect);