aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Quantin <pascal.quantin@gmail.com>2016-11-18 09:39:24 +0100
committerPascal Quantin <pascal.quantin@gmail.com>2016-11-18 08:41:53 +0000
commita90d196ce8f8dee4beb22c508080dfef6efdf71b (patch)
tree9888c351b640089a16f8be129e0ff6ab49afc502
parenta3d3ebf16260a1ea831b421c3d59f592d9ae54f4 (diff)
GTP: fix dissection of GGSN Back-Off Time IE
Bug: 13153 Change-Id: I2f404515187f9f29a45f101c8ff294a971ffddac Reviewed-on: https://code.wireshark.org/review/18865 Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
-rw-r--r--epan/dissectors/packet-gtp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-gtp.c b/epan/dissectors/packet-gtp.c
index de2dacb191..b3d85c2632 100644
--- a/epan/dissectors/packet-gtp.c
+++ b/epan/dissectors/packet-gtp.c
@@ -7647,8 +7647,8 @@ decode_gtp_ggsn_back_off_time(tvbuff_t * tvb, int offset, packet_info * pinfo _U
offset += 2;
/* 4 Timer unit Timer value */
- proto_tree_add_item(ext_tree, hf_gtp_ext_ggsn_back_off_time_units, tvb, offset, 2, ENC_BIG_ENDIAN);
- proto_tree_add_item(ext_tree, hf_gtp_ext_ggsn_back_off_timer, tvb, offset, 2, ENC_BIG_ENDIAN);
+ proto_tree_add_item(ext_tree, hf_gtp_ext_ggsn_back_off_time_units, tvb, offset, 1, ENC_BIG_ENDIAN);
+ proto_tree_add_item(ext_tree, hf_gtp_ext_ggsn_back_off_timer, tvb, offset, 1, ENC_BIG_ENDIAN);
return 3 + length;
}