aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/x509af
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2007-11-01 19:36:39 +0000
committerAnders Broman <anders.broman@ericsson.com>2007-11-01 19:36:39 +0000
commit94927006087e484617e5c4159ca1ba5d41fcd7c5 (patch)
treeb1ce12550022c858eb2b486f7b4cd318fd494ca2 /asn1/x509af
parent3161b47b4924492921e2e8ab0d1b2af07330e394 (diff)
Change:
get_oid_str_name() -> oid_resolved_from_string() get_oid_name() -> oid_resolved_from_encoded() svn path=/trunk/; revision=23331
Diffstat (limited to 'asn1/x509af')
-rw-r--r--asn1/x509af/x509af.cnf4
1 files changed, 2 insertions, 2 deletions
diff --git a/asn1/x509af/x509af.cnf b/asn1/x509af/x509af.cnf
index c0fb38b08f..e67602a11c 100644
--- a/asn1/x509af/x509af.cnf
+++ b/asn1/x509af/x509af.cnf
@@ -71,7 +71,7 @@ CertificateList/signedCertificateList/revokedCertificates/_item/userCertificate
%(DEFAULT_BODY)s
if(algorithm_id) {
- name = get_oid_str_name(algorithm_id);
+ name = oid_resolved_from_string(algorithm_id);
proto_item_append_text(tree, " (%%s)", name ? name : algorithm_id);
}
@@ -88,7 +88,7 @@ CertificateList/signedCertificateList/revokedCertificates/_item/userCertificate
%(DEFAULT_BODY)s
if(extension_id) {
- name = get_oid_str_name(extension_id);
+ name = oid_resolved_from_string(extension_id);
proto_item_append_text(tree, " (%%s)", name ? name : extension_id);
}