summaryrefslogtreecommitdiff
path: root/asn1/x509af
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2004-07-21 11:13:03 +0000
committerRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2004-07-21 11:13:03 +0000
commitdcea6b49c6749f6a0027031db01c4fc8809c576b (patch)
tree6599ca95bba5338a34de54b9e51b3dc12b8218f5 /asn1/x509af
parent9bbc41e5011834b275cf604d5b306320ee584d9b (diff)
downloadwireshark-dcea6b49c6749f6a0027031db01c4fc8809c576b.tar.gz
get rid of the nasty ber specific oid->callback table and reimplement the functionality using a dissector table instead i.e. the proper way.
svn path=/trunk/; revision=11457
Diffstat (limited to 'asn1/x509af')
-rw-r--r--asn1/x509af/packet-x509af-template.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/asn1/x509af/packet-x509af-template.c b/asn1/x509af/packet-x509af-template.c
index cd4004894c..788d0fbd80 100644
--- a/asn1/x509af/packet-x509af-template.c
+++ b/asn1/x509af/packet-x509af-template.c
@@ -63,7 +63,7 @@ dissect_hf_x509af_algorithm_id(packet_info *pinfo, proto_tree *tree, tvbuff_t *t
static int
dissect_hf_x509af_algorithm_type(packet_info *pinfo, proto_tree *tree, tvbuff_t *tvb, int offset)
{
- offset=invoke_ber_oid_callback(algorithm_id, tvb, offset, pinfo, tree);
+ offset=call_ber_oid_callback(algorithm_id, tvb, offset, pinfo, tree);
return offset;
}