aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorPascal Quantin <pascal.quantin@gmail.com>2012-09-12 10:21:00 +0000
committerPascal Quantin <pascal.quantin@gmail.com>2012-09-12 10:21:00 +0000
commit76b94dde6b7e6ded3fa031e3b97404a29bfc78be (patch)
tree6b68af4368a0af06eb7479315408f4e5fd2e995d /epan
parent42623443ed57d1e2781841a9b4be220b046a3344 (diff)
From Esa Haapamäki via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7718 :
Fix dissection of NAS Uplink and Downlink Count in MM Context IE svn path=/trunk/; revision=44881
Diffstat (limited to 'epan')
-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 296c1ab9f0..0dca0cf895 100644
--- a/epan/dissectors/packet-gtpv2.c
+++ b/epan/dissectors/packet-gtpv2.c
@@ -3347,11 +3347,11 @@ dissect_gtpv2_mm_context_eps_qq(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tre
offset += 1;
/* Octet 8-10 NAS Downlink Count*/
- proto_tree_add_item(tree, hf_gtpv2_mm_context_nas_dl_cnt, tvb, offset, 1, ENC_BIG_ENDIAN);
+ proto_tree_add_item(tree, hf_gtpv2_mm_context_nas_dl_cnt, tvb, offset, 3, ENC_BIG_ENDIAN);
offset += 3;
/* Octet 11-13 NAS Uplink Count */
- proto_tree_add_item(tree, hf_gtpv2_mm_context_nas_ul_cnt, tvb, offset, 1, ENC_BIG_ENDIAN);
+ proto_tree_add_item(tree, hf_gtpv2_mm_context_nas_ul_cnt, tvb, offset, 3, ENC_BIG_ENDIAN);
offset += 3;
/* Octet 14-45 */