aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorStephen Fisher <steve@stephen-fisher.com>2010-08-16 22:28:23 +0000
committerStephen Fisher <steve@stephen-fisher.com>2010-08-16 22:28:23 +0000
commit139d2e3af21912b5f2e6129757cbe3da31ed0bde (patch)
tree625619f21b239798bb546362a4107e65a2ed2e85 /epan
parent62a058ef5d9343b5191e9e3f4639406f15e3edb2 (diff)
Clarify that the "Sequence number" is given in big endian representation and the "Sequence number (LE)" is little endian.
svn path=/trunk/; revision=33822
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-icmp.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/epan/dissectors/packet-icmp.c b/epan/dissectors/packet-icmp.c
index e6dc91320e..809a5715ba 100644
--- a/epan/dissectors/packet-icmp.c
+++ b/epan/dissectors/packet-icmp.c
@@ -931,12 +931,10 @@ proto_register_icmp(void)
NULL, HFILL }},
{ &hf_icmp_seq_num,
- { "Sequence number", "icmp.seq", FT_UINT16, BASE_DEC_HEX, NULL, 0x0,
- NULL, HFILL }},
+ { "Sequence number", "icmp.seq", FT_UINT16, BASE_DEC_HEX, NULL, 0x0, "Sequence number (big endian representation)", HFILL }},
{ &hf_icmp_seq_num_le,
- {"Sequence number (LE)", "icmp.seq_le", FT_UINT16, BASE_DEC_HEX, NULL, 0x0,
- "", HFILL }},
+ {"Sequence number (LE)", "icmp.seq_le", FT_UINT16, BASE_DEC_HEX, NULL, 0x0, "Sequence number (little endian representation)", HFILL }},
{ &hf_icmp_mtu,
{ "MTU of next hop", "icmp.mtu", FT_UINT16, BASE_DEC, NULL, 0x0,