aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-eth.c
diff options
context:
space:
mode:
authorulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2005-07-08 22:11:13 +0000
committerulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2005-07-08 22:11:13 +0000
commit232b0dcc3a1f15c28120e4ec00ba720776369c17 (patch)
treec7f025f042af2c3d960b0a9194442ab8ac8e93f0 /epan/dissectors/packet-eth.c
parente0eba233f8ff2f26e6a69a9fa18c1d3387f51476 (diff)
checksum messages: use "[correct]" instead of "(correct)" and other "alike" messages
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@14880 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-eth.c')
-rw-r--r--epan/dissectors/packet-eth.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-eth.c b/epan/dissectors/packet-eth.c
index 02eb724bbc..d0dfa6667e 100644
--- a/epan/dissectors/packet-eth.c
+++ b/epan/dissectors/packet-eth.c
@@ -388,11 +388,11 @@ add_ethernet_trailer(proto_tree *fh_tree, int trailer_id, tvbuff_t *tvb,
guint32 fcs = crc32_802_tvb(tvb, tvb_length(tvb) - 4);
if (fcs == sent_fcs) {
proto_tree_add_text(fh_tree, trailer_tvb, trailer_length, 4,
- "Frame check sequence: 0x%08x (correct)",
+ "Frame check sequence: 0x%08x [correct]",
sent_fcs);
} else {
proto_tree_add_text(fh_tree, trailer_tvb, trailer_length, 4,
- "Frame check sequence: 0x%08x (incorrect, should be 0x%08x)",
+ "Frame check sequence: 0x%08x [incorrect, should be 0x%08x]",
sent_fcs, fcs);
}
}