QUIC: fix STOP_SENDING length

Change-Id: I954425bb54f9511ba2cea50adfa8c69ea322267c
Reviewed-on: https://code.wireshark.org/review/24429
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
Alexis La Goutte 2017-11-15 07:42:37 +01:00 committed by Anders Broman
parent 129ffaf11b
commit 256622cb71
1 changed files with 1 additions and 1 deletions

View File

@ -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");