diff options
author | Gerald Combs <gerald@wireshark.org> | 2008-12-18 20:19:49 +0000 |
---|---|---|
committer | Gerald Combs <gerald@wireshark.org> | 2008-12-18 20:19:49 +0000 |
commit | fc71188963e3abbe23a17a327b22dd8e920e4da3 (patch) | |
tree | 332faa3857357eb750d858d3fb9efb168f4e5355 /epan/dissectors/packet-isis-hello.c | |
parent | d2ba316fd9f4dc449589f8ab4e1744cd93e80eb8 (diff) | |
download | wireshark-fc71188963e3abbe23a17a327b22dd8e920e4da3.tar.gz wireshark-fc71188963e3abbe23a17a327b22dd8e920e4da3.tar.bz2 wireshark-fc71188963e3abbe23a17a327b22dd8e920e4da3.zip |
Update calls to proto_tree_add_bytes_format to reflect r27047.
svn path=/trunk/; revision=27053
Diffstat (limited to 'epan/dissectors/packet-isis-hello.c')
-rw-r--r-- | epan/dissectors/packet-isis-hello.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-isis-hello.c b/epan/dissectors/packet-isis-hello.c index bd70860289..bbe0df7991 100644 --- a/epan/dissectors/packet-isis-hello.c +++ b/epan/dissectors/packet-isis-hello.c @@ -444,7 +444,7 @@ dissect_hello_restart_clv(tvbuff_t *tvb, neighbor_id = tvb_get_ptr(tvb, offset+3, id_length); proto_tree_add_bytes_format( tree, hf_isis_hello_clv_restart_neighbor, tvb, offset+3, - id_length, neighbor_id, "Restarting Neighbor ID: %s", + id_length, "Restarting Neighbor ID: %s", print_system_id( neighbor_id, id_length ) ); } } @@ -861,7 +861,7 @@ isis_dissect_isis_hello(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int if (tree) { source_id = tvb_get_ptr(tvb, offset, id_length); proto_tree_add_bytes_format(hello_tree, hf_isis_hello_source_id, tvb, - offset, id_length, source_id, + offset, id_length, "System-ID {Sender of PDU} : %s", print_system_id( source_id, id_length ) ); } @@ -904,7 +904,7 @@ isis_dissect_isis_hello(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int if (tree) { lan_id = tvb_get_ptr(tvb, offset, id_length+1); proto_tree_add_bytes_format(hello_tree, hf_isis_hello_lan_id, tvb, - offset, id_length + 1, lan_id, + offset, id_length + 1, "System-ID {Designated IS} : %s", print_system_id( lan_id, id_length + 1 ) ); } |