aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-x509af.c
diff options
context:
space:
mode:
authoretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2007-11-01 19:36:39 +0000
committeretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2007-11-01 19:36:39 +0000
commit40a66365ad303b668346c0f32a4ce870ea74d504 (patch)
treeb1ce12550022c858eb2b486f7b4cd318fd494ca2 /epan/dissectors/packet-x509af.c
parent99599403b9c31b4cb3822e270de3b0b687364997 (diff)
Change:
get_oid_str_name() -> oid_resolved_from_string() get_oid_name() -> oid_resolved_from_encoded() git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@23331 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-x509af.c')
-rw-r--r--epan/dissectors/packet-x509af.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/dissectors/packet-x509af.c b/epan/dissectors/packet-x509af.c
index 2b90f12d39..9120a011dd 100644
--- a/epan/dissectors/packet-x509af.c
+++ b/epan/dissectors/packet-x509af.c
@@ -1,6 +1,6 @@
/* Do not modify this file. */
/* It is created automatically by the ASN.1 to Wireshark dissector compiler */
-/* ./packet-x509af.c */
+/* packet-x509af.c */
/* ../../tools/asn2wrs.py -b -e -p x509af -c x509af.cnf -s packet-x509af-template AuthenticationFramework.asn */
/* Input file: packet-x509af-template.c */
@@ -273,7 +273,7 @@ dissect_x509af_T_algorithmId(gboolean implicit_tag _U_, tvbuff_t *tvb _U_, int o
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);
}
@@ -496,7 +496,7 @@ dissect_x509af_T_extnId(gboolean implicit_tag _U_, tvbuff_t *tvb _U_, int offset
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);
}
@@ -1126,7 +1126,7 @@ dissect_pkix_crl(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree)
if (check_col(pinfo->cinfo, COL_INFO)) {
col_clear(pinfo->cinfo, COL_INFO);
- col_add_fstr(pinfo->cinfo, COL_INFO, "Certificate Revocation List");
+ col_set_str(pinfo->cinfo, COL_INFO, "Certificate Revocation List");
}