Add "(BE)" to the big endian representations of the ICMP identifier and

sequence number fields to match the "(LE)" ones.


svn path=/trunk/; revision=34136
This commit is contained in:
Stephen Fisher 2010-09-16 18:22:45 +00:00
parent b6e984c095
commit 034f2739d2
1 changed files with 2 additions and 2 deletions

View File

@ -933,7 +933,7 @@ proto_register_icmp(void)
NULL, HFILL }},
{ &hf_icmp_ident,
{ "Identifier", "icmp.ident", FT_UINT16, BASE_DEC_HEX, NULL, 0x0,
{ "Identifier (BE)", "icmp.ident", FT_UINT16, BASE_DEC_HEX, NULL, 0x0,
"Identifier (big endian representation)", HFILL }},
{ &hf_icmp_ident_le,
@ -941,7 +941,7 @@ proto_register_icmp(void)
"Identifier (little endian representation)", HFILL }},
{ &hf_icmp_seq_num,
{ "Sequence number", "icmp.seq", FT_UINT16, BASE_DEC_HEX, NULL, 0x0, "Sequence number (big endian representation)", HFILL }},
{ "Sequence number (BE)", "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, "Sequence number (little endian representation)", HFILL }},