aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-arp.c
diff options
context:
space:
mode:
authorDario Lombardo <lomato@gmail.com>2015-10-02 17:56:26 +0200
committerMichael Mann <mmann78@netscape.net>2015-10-02 23:23:03 +0000
commit42ae72134d86dad1f56e39b04603d90223ecd702 (patch)
treeabf433d2da5e6a87f73b5840c892a4c24e2d7e80 /epan/dissectors/packet-arp.c
parente7c0e5bd1e83aa29176333f69fbdb247560a7632 (diff)
arp: fix typo in switch (CID 1250809)
Change-Id: I4679861383e9548d1cc042d084443a73f73a30de Reviewed-on: https://code.wireshark.org/review/10743 Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan/dissectors/packet-arp.c')
-rw-r--r--epan/dissectors/packet-arp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-arp.c b/epan/dissectors/packet-arp.c
index 511ca4af92..72d30d9c8f 100644
--- a/epan/dissectors/packet-arp.c
+++ b/epan/dissectors/packet-arp.c
@@ -587,7 +587,7 @@ dissect_atm_nsap(tvbuff_t *tvb, packet_info* pinfo, int offset, int len, proto_t
case 0x45: /* E.164 ATM format */
case 0xC3: /* E.164 ATM group format */
- proto_tree_add_item(tree, (afi == 0xC5) ? hf_atmarp_src_atm_e_164_isdn_group : hf_atmarp_src_atm_e_164_isdn,
+ proto_tree_add_item(tree, (afi == 0xC3) ? hf_atmarp_src_atm_e_164_isdn_group : hf_atmarp_src_atm_e_164_isdn,
tvb, offset + 1, 8, ENC_NA);
proto_tree_add_item(tree, hf_atmarp_src_atm_high_order_dsp, tvb, offset + 9, 4, ENC_NA);
proto_tree_add_item(tree, hf_atmarp_src_atm_end_system_identifier, tvb, offset + 13, 6, ENC_NA);