From af10f7a4a5a6e73fbf556229887de3b955f5889b Mon Sep 17 00:00:00 2001 From: sahlberg Date: Sun, 14 Nov 2004 05:15:09 +0000 Subject: various changes in the generated dissectors after asn2eth was patched. i think it is high time to put makefiles down in asn1/ since this autogenerating dissectors "experiment" have payed off so well and it actual;ly works! i dont know anything about how autogen stuff works :-( git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@12522 f5534014-38df-0310-8fa8-9805f1628bb7 --- epan/dissectors/packet-x509af.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'epan/dissectors/packet-x509af.c') diff --git a/epan/dissectors/packet-x509af.c b/epan/dissectors/packet-x509af.c index 0a8b1b92c8..7c4e86998e 100644 --- a/epan/dissectors/packet-x509af.c +++ b/epan/dissectors/packet-x509af.c @@ -227,7 +227,7 @@ static const value_string Version_vals[] = { static int dissect_x509af_Version(gboolean implicit_tag _U_, tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree, int hf_index) { - offset = dissect_ber_integer(pinfo, tree, tvb, offset, hf_index, NULL); + offset = dissect_ber_integer_new(implicit_tag, pinfo, tree, tvb, offset, hf_index, NULL); return offset; } @@ -239,7 +239,7 @@ static int dissect_version(packet_info *pinfo, proto_tree *tree, tvbuff_t *tvb, int dissect_x509af_CertificateSerialNumber(gboolean implicit_tag _U_, tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree, int hf_index) { - offset = dissect_ber_integer(pinfo, tree, tvb, offset, hf_index, NULL); + offset = dissect_ber_integer_new(implicit_tag, pinfo, tree, tvb, offset, hf_index, NULL); return offset; } -- cgit v1.2.3