aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2004-12-12 00:24:21 +0000
committerRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2004-12-12 00:24:21 +0000
commitdab0fabcadb8958a8683bb7125f374ff683074aa (patch)
tree90b35fa1d00a7037ac50dfaecc7613a1d6a8be29
parent549fcbe6e42881f8685910bd1e4b3a1f9ae9209a (diff)
remove the function with the old signature for ber integer dissection
svn path=/trunk/; revision=12723
-rw-r--r--epan/dissectors/packet-ber.c8
-rw-r--r--epan/dissectors/packet-ber.h1
2 files changed, 0 insertions, 9 deletions
diff --git a/epan/dissectors/packet-ber.c b/epan/dissectors/packet-ber.c
index 44625ab572..7936866f5e 100644
--- a/epan/dissectors/packet-ber.c
+++ b/epan/dissectors/packet-ber.c
@@ -582,14 +582,6 @@ printf("INTEGERnew dissect_ber_integer_new(%s) entered implicit_tag:%d len:%d\n"
return offset;
}
-/* XXX kludge until we fix up asn2eth and rebuild everything */
-int
-dissect_ber_integer(packet_info *pinfo, proto_tree *tree, tvbuff_t *tvb, int offset, gint hf_id, guint32 *value)
-{
- return dissect_ber_integer_new(FALSE, pinfo, tree, tvb, offset, hf_id, value);
-}
-
-
int
dissect_ber_boolean(packet_info *pinfo, proto_tree *tree, tvbuff_t *tvb, int offset, gint hf_id)
diff --git a/epan/dissectors/packet-ber.h b/epan/dissectors/packet-ber.h
index d69461d2e3..44d71483de 100644
--- a/epan/dissectors/packet-ber.h
+++ b/epan/dissectors/packet-ber.h
@@ -86,7 +86,6 @@ extern int dissect_ber_length(packet_info *pinfo, proto_tree *tree, tvbuff_t *tv
extern int dissect_ber_octet_string(gboolean implicit_tag, packet_info *pinfo, proto_tree *tree, tvbuff_t *tvb, int offset, gint hf_id, tvbuff_t **out_tvb);
extern int dissect_ber_octet_string_wcb(gboolean implicit_tag, packet_info *pinfo, proto_tree *tree, tvbuff_t *tvb, int offset, gint hf_id, ber_callback func);
-extern int dissect_ber_integer(packet_info *pinfo, proto_tree *tree, tvbuff_t *tvb, int offset, gint hf_id, guint32 *value);
extern int dissect_ber_integer_new(gboolean implicit_tag, packet_info *pinfo, proto_tree *tree, tvbuff_t *tvb, int offset, gint hf_id, guint32 *value);