HTTP: fix typo in dissect_http_heur_tls()

Fixes: a1a2b536
Close #17414
This commit is contained in:
Nardi Ivan 2021-05-31 08:32:12 +02:00 committed by Wireshark GitLab Utility
parent ffc5522a35
commit 26dd456e62
1 changed files with 1 additions and 1 deletions

View File

@ -3816,7 +3816,7 @@ dissect_http_heur_tls(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void
}
conv_data = wmem_new0(wmem_file_scope(), http_conv_t);
conversation_add_proto_data(conversation, proto_http2, conv_data);
conversation_add_proto_data(conversation, proto_http, conv_data);
dissect_http_tls(tvb, pinfo, tree, data);
return TRUE;
}