aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2017-05-20 16:51:32 +0200
committerAnders Broman <a.broman58@gmail.com>2017-05-21 07:56:23 +0000
commit5f74d8b40bda3d201684fcb568a33d2a3b2fa576 (patch)
treea44830c998d541ad6c7115708839577d38792510 /epan
parent92b892150fb40fd96a5270994e91e6e2158d9382 (diff)
QUIC: fix some indent issue
Change-Id: If259cb4c37b10aca9f5b8e16f409acc8412f0622 Reviewed-on: https://code.wireshark.org/review/21719 Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-quic.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/epan/dissectors/packet-quic.c b/epan/dissectors/packet-quic.c
index 029c7d2348..1ed4131baf 100644
--- a/epan/dissectors/packet-quic.c
+++ b/epan/dissectors/packet-quic.c
@@ -1456,10 +1456,10 @@ dissect_quic_tag(tvbuff_t *tvb, packet_info *pinfo, proto_tree *quic_tree, guint
tag_len -= tag_len;
break;
case TAG_PUBS:
- /*TODO FIX: 24 Length + Pubs key?.. ! */
- proto_tree_add_item(tag_tree, hf_quic_tag_pubs, tvb, tag_offset_start + tag_offset, 2, ENC_LITTLE_ENDIAN);
- tag_offset += 2;
- tag_len -= 2;
+ /*TODO FIX: 24 Length + Pubs key?.. ! */
+ proto_tree_add_item(tag_tree, hf_quic_tag_pubs, tvb, tag_offset_start + tag_offset, 2, ENC_LITTLE_ENDIAN);
+ tag_offset += 2;
+ tag_len -= 2;
while(tag_len > 0){
proto_tree_add_item(tag_tree, hf_quic_tag_pubs, tvb, tag_offset_start + tag_offset, 3, ENC_LITTLE_ENDIAN);
tag_offset += 3;
@@ -1648,7 +1648,7 @@ dissect_quic_tag(tvbuff_t *tvb, packet_info *pinfo, proto_tree *quic_tree, guint
tag_offset += tag_len;
tag_len -= tag_len;
break;
- }
+ }
if(tag_len){
/* Wrong Tag len... */
proto_tree_add_expert(tag_tree, pinfo, &ei_quic_tag_unknown, tvb, tag_offset_start + tag_offset, tag_len);