aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2020-09-10 14:21:38 +0200
committerAndersBroman <a.broman58@gmail.com>2020-09-10 14:01:41 +0000
commitb801e7c4a915c1d2b4a21895492de9fb5fb4e222 (patch)
tree0570a1ade95ec03a7325ea1971980f055c46dae1 /epan/dissectors
parentecbc0a56114ed43e4d03467abd90bc8a57f5c03d (diff)
gQUIC: fix wrong encoding for client timestamp (ctim)
Closes #16839
Diffstat (limited to 'epan/dissectors')
-rw-r--r--epan/dissectors/packet-gquic.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-gquic.c b/epan/dissectors/packet-gquic.c
index d75a10d277..f6754e1a3f 100644
--- a/epan/dissectors/packet-gquic.c
+++ b/epan/dissectors/packet-gquic.c
@@ -1560,7 +1560,7 @@ dissect_gquic_tag(tvbuff_t *tvb, packet_info *pinfo, proto_tree *gquic_tree, gui
tag_offset += tag_len;
break;
case TAG_CTIM:
- proto_tree_add_item(tag_tree, hf_gquic_tag_ctim, tvb, tag_offset_start + tag_offset, 8, ENC_TIME_SECS_NSECS);
+ proto_tree_add_item(tag_tree, hf_gquic_tag_ctim, tvb, tag_offset_start + tag_offset, 8, ENC_LITTLE_ENDIAN|ENC_TIME_SECS_NSECS);
tag_offset += 8;
break;
case TAG_RNON: /* Public Reset Tag */