aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorStephen Fisher <steve@stephen-fisher.com>2010-08-23 23:09:32 +0000
committerStephen Fisher <steve@stephen-fisher.com>2010-08-23 23:09:32 +0000
commitb4addc04fedcd78769b3fb81df44588ae2368690 (patch)
tree32dcc98c9cf0e372bb7e987082e06d015e8e6de8 /epan
parent66d340863f85d976285b0c88cd1e1a0e597fe1db (diff)
The ARP hardware type and operation code are listed with the IANA in decimal notation, not hex.
svn path=/trunk/; revision=33898
Diffstat (limited to 'epan')
-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,