aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-isis-hello.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-isis-hello.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-isis-hello.c')
-rw-r--r--epan/dissectors/packet-isis-hello.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/dissectors/packet-isis-hello.c b/epan/dissectors/packet-isis-hello.c
index 197c4910f7..1ce2577aea 100644
--- a/epan/dissectors/packet-isis-hello.c
+++ b/epan/dissectors/packet-isis-hello.c
@@ -553,22 +553,22 @@ dissect_hello_checksum_clv(tvbuff_t *tvb,
case NO_CKSUM :
proto_tree_add_text ( tree, tvb, offset, length,
- "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, 0));
break;
case CKSUM_NOT_OK :
proto_tree_add_text ( tree, tvb, offset, length,
- "Checksum: 0x%04x (incorrect, should be 0x%04x)",
+ "Checksum: 0x%04x [incorrect, should be 0x%04x]",
checksum,
cacl_checksum);
break;
case CKSUM_OK :
proto_tree_add_text ( tree, tvb, offset, length,
- "Checksum: 0x%04x (correct)", checksum);
+ "Checksum: 0x%04x [correct]", checksum);
break;
default :
g_message("'check_and_get_checksum' returned an invalid value");