aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2016-08-18 13:02:53 +0200
committerAnders Broman <a.broman58@gmail.com>2016-08-18 11:28:30 +0000
commitb2a6bb18aa84a084f1662eaf4faaf26c764ef629 (patch)
tree245fd55e34b6951718c6e762a5ea8877d635f68d
parent5bc19feb86114518f988762a242c60e21487f6dc (diff)
QUIC: fix typo about stream offset
it is only Offset not Offset Length Issue reported by Lucas Change-Id: I3129d62a0601b896fd0d44d5ce4d32864afdd96e Reviewed-on: https://code.wireshark.org/review/17138 Reviewed-by: Anders Broman <a.broman58@gmail.com>
-rw-r--r--epan/dissectors/packet-quic.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/dissectors/packet-quic.c b/epan/dissectors/packet-quic.c
index 1178bea2b4..00a059fa59 100644
--- a/epan/dissectors/packet-quic.c
+++ b/epan/dissectors/packet-quic.c
@@ -114,7 +114,7 @@ static int hf_quic_frame_type_ack_ack_block_length = -1;
static int hf_quic_frame_type_ack_delta_largest_acked = -1;
static int hf_quic_frame_type_ack_time_since_largest_acked = -1;
static int hf_quic_stream_id = -1;
-static int hf_quic_offset_len = -1;
+static int hf_quic_offset = -1;
static int hf_quic_data_len = -1;
static int hf_quic_tag = -1;
static int hf_quic_tags = -1;
@@ -1681,7 +1681,7 @@ dissect_quic_frame_type(tvbuff_t *tvb, packet_info *pinfo, proto_tree *quic_tree
}
if(len_offset) {
- proto_tree_add_item(ft_tree, hf_quic_offset_len, tvb, offset, len_offset, ENC_LITTLE_ENDIAN);
+ proto_tree_add_item(ft_tree, hf_quic_offset, tvb, offset, len_offset, ENC_LITTLE_ENDIAN);
offset += len_offset;
}
@@ -2424,8 +2424,8 @@ proto_register_quic(void)
FT_UINT32, BASE_DEC, NULL, 0x0,
NULL, HFILL }
},
- { &hf_quic_offset_len,
- { "Offset Length", "quic.offset_len",
+ { &hf_quic_offset,
+ { "Offset", "quic.offset",
FT_UINT64, BASE_DEC, NULL, 0x0,
NULL, HFILL }
},