aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/x509if
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/x509if
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/x509if')
-rw-r--r--asn1/x509if/x509if.cnf4
1 files changed, 2 insertions, 2 deletions
diff --git a/asn1/x509if/x509if.cnf b/asn1/x509if/x509if.cnf
index fe75422f31..7be816aeec 100644
--- a/asn1/x509if/x509if.cnf
+++ b/asn1/x509if/x509if.cnf
@@ -141,7 +141,7 @@ DistinguishedName B "2.16.840.1.101.2.2.1.140" "id-at-garrison"
if(object_identifier_id) {
/* see if we can find a nice name */
- name = get_oid_str_name(object_identifier_id);
+ name = oid_resolved_from_string(object_identifier_id);
if(!name) name = object_identifier_id;
if(doing_dn) { /* append it to the RDN */
@@ -197,7 +197,7 @@ DistinguishedName B "2.16.840.1.101.2.2.1.140" "id-at-garrison"
if((fmt = val_to_str(ava_hf_index, fmt_vals, "")) && *fmt) {
/* we have a format */
- if(!(name = get_oid_str_name(object_identifier_id)))
+ if(!(name = oid_resolved_from_string(object_identifier_id)))
name = object_identifier_id;
g_snprintf(last_ava, MAX_AVA_STR_LEN, "%%s %%s %%s", name, fmt, value);