aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-icmpv6.c
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2005-07-08 22:11:13 +0000
committerUlf Lamping <ulf.lamping@web.de>2005-07-08 22:11:13 +0000
commit2c30357c483da1238bfd45455272db93a2ec65c9 (patch)
treec7f025f042af2c3d960b0a9194442ab8ac8e93f0 /epan/dissectors/packet-icmpv6.c
parent6b0815ee9cf23c43525c26814bf81a934e0120f2 (diff)
checksum messages: use "[correct]" instead of "(correct)" and other "alike" messages
svn path=/trunk/; revision=14880
Diffstat (limited to 'epan/dissectors/packet-icmpv6.c')
-rw-r--r--epan/dissectors/packet-icmpv6.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-icmpv6.c b/epan/dissectors/packet-icmpv6.c
index fa83f96c48..0cf2d2eac2 100644
--- a/epan/dissectors/packet-icmpv6.c
+++ b/epan/dissectors/packet-icmpv6.c
@@ -1274,7 +1274,7 @@ dissect_icmpv6(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
tvb,
offset + offsetof(struct icmp6_hdr, icmp6_cksum), 2,
cksum,
- "Checksum: 0x%04x (correct)", cksum);
+ "Checksum: 0x%04x [correct]", cksum);
} else {
proto_tree_add_boolean_hidden(icmp6_tree, hf_icmpv6_checksum_bad,
tvb,
@@ -1284,7 +1284,7 @@ dissect_icmpv6(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
tvb,
offset + offsetof(struct icmp6_hdr, icmp6_cksum), 2,
cksum,
- "Checksum: 0x%04x (incorrect, should be 0x%04x)",
+ "Checksum: 0x%04x [incorrect, should be 0x%04x]",
cksum, in_cksum_shouldbe(cksum, computed_cksum));
}
} else {