aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-gtpv2.c
diff options
context:
space:
mode:
authorJoakim Karlsson <oakimk@gmail.com>2017-09-07 23:20:34 +0200
committerAnders Broman <a.broman58@gmail.com>2017-09-08 13:20:51 +0000
commit585297b189ba7f39db34f66f57d25429c8daf570 (patch)
tree97f271a814eeb300a1030fac652ffb484ae1ae5a /epan/dissectors/packet-gtpv2.c
parentdf21aa90250c29d7466d55d9e0eda2cddd0dfbd8 (diff)
GPRSCDR: decoding of EPS QoS/aRP
* Decoding of Allocation/Retention Priority (ARP) * Fix order of ARP in GTPv2 Change-Id: Ica24877f3518b5e0b6883ba535ffe09be8f446c2 Reviewed-on: https://code.wireshark.org/review/23431 Reviewed-by: Michael Mann <mmann78@netscape.net> Petri-Dish: Michael Mann <mmann78@netscape.net> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-gtpv2.c')
-rw-r--r--epan/dissectors/packet-gtpv2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-gtpv2.c b/epan/dissectors/packet-gtpv2.c
index 8942f73683..4dc451425e 100644
--- a/epan/dissectors/packet-gtpv2.c
+++ b/epan/dissectors/packet-gtpv2.c
@@ -5629,9 +5629,9 @@ dissect_gtpv2_arp(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tree, proto
{
int offset = 0;
- proto_tree_add_item(tree, hf_gtpv2_arp_pvi, tvb, offset, 1, ENC_BIG_ENDIAN);
- proto_tree_add_item(tree, hf_gtpv2_arp_pl, tvb, offset, 1, ENC_BIG_ENDIAN);
proto_tree_add_item(tree, hf_gtpv2_arp_pci, tvb, offset, 1, ENC_BIG_ENDIAN);
+ proto_tree_add_item(tree, hf_gtpv2_arp_pl, tvb, offset, 1, ENC_BIG_ENDIAN);
+ proto_tree_add_item(tree, hf_gtpv2_arp_pvi, tvb, offset, 1, ENC_BIG_ENDIAN);
offset += 1;
if (length > 1)