aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/asn1
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2008-12-18 20:19:49 +0000
committerGerald Combs <gerald@wireshark.org>2008-12-18 20:19:49 +0000
commitfc71188963e3abbe23a17a327b22dd8e920e4da3 (patch)
tree332faa3857357eb750d858d3fb9efb168f4e5355 /plugins/asn1
parentd2ba316fd9f4dc449589f8ab4e1744cd93e80eb8 (diff)
Update calls to proto_tree_add_bytes_format to reflect r27047.
svn path=/trunk/; revision=27053
Diffstat (limited to 'plugins/asn1')
-rw-r--r--plugins/asn1/packet-asn1.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/asn1/packet-asn1.c b/plugins/asn1/packet-asn1.c
index 9c0eb9b9ce..e5e97ae28b 100644
--- a/plugins/asn1/packet-asn1.c
+++ b/plugins/asn1/packet-asn1.c
@@ -1338,7 +1338,7 @@ decode_asn1_sequence(tvbuff_t *tvb, guint offset, guint tlen, proto_tree *pt, in
ename, empty);
else {
proto_tree_add_bytes_format(pt, props.value_id, tvb, boffset,
- offset - boffset, ename,/* XXX length?*/
+ offset - boffset,
"(%s)%s: %s ~", tname, name, ename);
if (props.type_id != -1){
hidden_item = proto_tree_add_bytes(pt, props.type_id, tvb,
@@ -1355,7 +1355,7 @@ decode_asn1_sequence(tvbuff_t *tvb, guint offset, guint tlen, proto_tree *pt, in
"(%s)%s: %s", tname, name, ename);
else {
proto_tree_add_bytes_format(pt, props.value_id, tvb, boffset,
- offset - boffset, ename, /* XXX length ? */
+ offset - boffset,
"(%s)%s: %s ~", tname, name, ename);
if (props.type_id != -1){
hidden_item = proto_tree_add_bytes(pt, props.type_id, tvb,