decode-der: decode DC keyword

'DC' is used by some certificates and it was not currently translated
to a string.
pull/1473/head
Eric Leblond 11 years ago committed by Victor Julien
parent 26ba647d58
commit 58582df1c6

@ -66,6 +66,9 @@ static const char *Oid2ShortStr(const char *oid)
if (strcmp(oid, "2.5.4.11")==0)
return "OU";
if (strcmp(oid, "0.9.2342.19200300.100.1.25")==0)
return "DC";
return "unknown";
}

Loading…
Cancel
Save