aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Schultz <andreas.schultz@travelping.com>2017-12-22 12:54:27 +0100
committerAnders Broman <a.broman58@gmail.com>2017-12-22 13:28:52 +0000
commit9306a044ce6b8358e2aec8515d29729949bdbb13 (patch)
tree35200ae1b93a28fbcdb8efb290a95cb926a309c1
parent70e16734d234edcc035fef18a8996c468392ba46 (diff)
[PFCP] Fixed length of CSID entry in FQ-CSID
PDN Connection Set Identifier is two bytes. 3GPP TS 29.244 Section 8.2.43 Change-Id: I6ac1dab341e4ae54cbbdcbcbe8583a6a49293269 Reviewed-on: https://code.wireshark.org/review/24938 Reviewed-by: Anders Broman <a.broman58@gmail.com>
-rw-r--r--epan/dissectors/packet-pfcp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-pfcp.c b/epan/dissectors/packet-pfcp.c
index f138aa5955..5be3c76767 100644
--- a/epan/dissectors/packet-pfcp.c
+++ b/epan/dissectors/packet-pfcp.c
@@ -2007,7 +2007,7 @@ dissect_pfcp_fq_csid(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, proto_
}
while (num_csid > 0) {
- proto_tree_add_item(tree, hf_pfcp_fq_csid, tvb, offset, 4, ENC_BIG_ENDIAN);
+ proto_tree_add_item(tree, hf_pfcp_fq_csid, tvb, offset, 2, ENC_BIG_ENDIAN);
offset += 2;
num_csid--;
}