aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2017-11-15 07:42:37 +0100
committerAnders Broman <a.broman58@gmail.com>2017-11-15 08:09:27 +0000
commit256622cb710a3c8096d5d24b49cf45deb76e0772 (patch)
tree117f2a4baad5716c515a7520859594ed17397530
parent129ffaf11b704141b9d1049b4bd293744493d4ad (diff)
QUIC: fix STOP_SENDING length
Change-Id: I954425bb54f9511ba2cea50adfa8c69ea322267c Reviewed-on: https://code.wireshark.org/review/24429 Reviewed-by: Anders Broman <a.broman58@gmail.com>
-rw-r--r--epan/dissectors/packet-quic.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-quic.c b/epan/dissectors/packet-quic.c
index e881f71344..f17f791860 100644
--- a/epan/dissectors/packet-quic.c
+++ b/epan/dissectors/packet-quic.c
@@ -646,7 +646,7 @@ dissect_quic_frame_type(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *quic_
proto_tree_add_item(ft_tree, hf_quic_frame_type_ss_error_code, tvb, offset, 4, ENC_BIG_ENDIAN);
offset += 4;
- proto_item_set_len(ti_ft, 1 + 4 + 4 + 16);
+ proto_item_set_len(ti_ft, 1 + 4 + 4);
col_prepend_fstr(pinfo->cinfo, COL_INFO, "Stop Sending");