aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-arp.c
diff options
context:
space:
mode:
authorsfisher <sfisher@f5534014-38df-0310-8fa8-9805f1628bb7>2010-08-23 23:09:32 +0000
committersfisher <sfisher@f5534014-38df-0310-8fa8-9805f1628bb7>2010-08-23 23:09:32 +0000
commitc72695a1b4aa0af12bb3774b17b78429d3367f9c (patch)
tree32dcc98c9cf0e372bb7e987082e06d015e8e6de8 /epan/dissectors/packet-arp.c
parentcede46b9302540b5f9a3e3ba15d8a96d7eec9d22 (diff)
The ARP hardware type and operation code are listed with the IANA in decimal notation, not hex.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@33898 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-arp.c')
-rw-r--r--epan/dissectors/packet-arp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-arp.c b/epan/dissectors/packet-arp.c
index b3d8da03fa..8cc5f95d4f 100644
--- a/epan/dissectors/packet-arp.c
+++ b/epan/dissectors/packet-arp.c
@@ -1129,7 +1129,7 @@ proto_register_arp(void)
static hf_register_info hf[] = {
{ &hf_arp_hard_type,
{ "Hardware type", "arp.hw.type",
- FT_UINT16, BASE_HEX, VALS(hrd_vals), 0x0,
+ FT_UINT16, BASE_DEC, VALS(hrd_vals), 0x0,
NULL, HFILL }},
{ &hf_arp_proto_type,
@@ -1169,7 +1169,7 @@ proto_register_arp(void)
{ &hf_arp_opcode,
{ "Opcode", "arp.opcode",
- FT_UINT16, BASE_HEX, VALS(op_vals), 0x0,
+ FT_UINT16, BASE_DEC, VALS(op_vals), 0x0,
NULL, HFILL }},
{ &hf_arp_isgratuitous,