aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-x509af.c
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 /epan/dissectors/packet-x509af.c
parent9bbc41e5011834b275cf604d5b306320ee584d9b (diff)
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 'epan/dissectors/packet-x509af.c')
-rw-r--r--epan/dissectors/packet-x509af.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/epan/dissectors/packet-x509af.c b/epan/dissectors/packet-x509af.c
index 8db10f70cd..368d3789a2 100644
--- a/epan/dissectors/packet-x509af.c
+++ b/epan/dissectors/packet-x509af.c
@@ -45,7 +45,6 @@
#include "packet-x509af.h"
#include "packet-x509ce.h"
#include "packet-x509if.h"
-#include "packet-x509sat.h"
#define PNAME "X.509 Authentication Framework"
#define PSNAME "X509AF"
@@ -184,7 +183,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;
}