diff options
author | Ulf Lamping <ulf.lamping@web.de> | 2005-07-08 22:11:13 +0000 |
---|---|---|
committer | Ulf Lamping <ulf.lamping@web.de> | 2005-07-08 22:11:13 +0000 |
commit | 2c30357c483da1238bfd45455272db93a2ec65c9 (patch) | |
tree | c7f025f042af2c3d960b0a9194442ab8ac8e93f0 /epan/dissectors/packet-isis-lsp.c | |
parent | 6b0815ee9cf23c43525c26814bf81a934e0120f2 (diff) | |
download | wireshark-2c30357c483da1238bfd45455272db93a2ec65c9.tar.gz wireshark-2c30357c483da1238bfd45455272db93a2ec65c9.tar.bz2 wireshark-2c30357c483da1238bfd45455272db93a2ec65c9.zip |
checksum messages: use "[correct]" instead of "(correct)" and other "alike" messages
svn path=/trunk/; revision=14880
Diffstat (limited to 'epan/dissectors/packet-isis-lsp.c')
-rw-r--r-- | epan/dissectors/packet-isis-lsp.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/dissectors/packet-isis-lsp.c b/epan/dissectors/packet-isis-lsp.c index e6cc7948bd..c9a1bf169c 100644 --- a/epan/dissectors/packet-isis-lsp.c +++ b/epan/dissectors/packet-isis-lsp.c @@ -1808,23 +1808,23 @@ isis_dissect_isis_lsp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int o case NO_CKSUM : proto_tree_add_uint_format(lsp_tree, hf_isis_lsp_checksum, tvb, offset, 2, checksum, - "Checksum: 0x%04x (unused)", checksum); + "Checksum: 0x%04x [unused]", checksum); break; case DATA_MISSING : isis_dissect_unknown(tvb, tree, offset, - "packet length %d went beyond packet", + "[packet length %d went beyond packet]", tvb_length_remaining(tvb, offset_checksum)); break; case CKSUM_NOT_OK : proto_tree_add_uint_format(lsp_tree, hf_isis_lsp_checksum, tvb, offset, 2, checksum, - "Checksum: 0x%04x (incorrect, should be 0x%04x)", + "Checksum: 0x%04x [incorrect, should be 0x%04x]", checksum, cacl_checksum); proto_tree_add_boolean_hidden(lsp_tree, hf_isis_lsp_checksum_bad, tvb, offset, 2, TRUE); break; case CKSUM_OK : proto_tree_add_uint_format(lsp_tree, hf_isis_lsp_checksum, tvb, offset, 2, checksum, - "Checksum: 0x%04x (correct)", checksum); + "Checksum: 0x%04x [correct]", checksum); proto_tree_add_boolean_hidden(lsp_tree, hf_isis_lsp_checksum_bad, tvb, offset, 2, FALSE); break; |