aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorJason Cohen <j.cohen@f5.com>2019-08-14 07:46:51 -0500
committerGuy Harris <guy@alum.mit.edu>2019-08-14 18:14:26 +0000
commit17a2d9445232c3f87b2a3dba9d553a84184c2963 (patch)
treef3743ff969701c14adf753aef8755d2b71612f49 /epan
parentb04f675c069cae58bc5af85f68836d00e588c48a (diff)
f5ethtrailer: fix type descripter in dissector table registration
Bug: 15996 Change-Id: Ic6f616a0a0461adca6e44f8c5a0c20b0083ead1a Reviewed-on: https://code.wireshark.org/review/34286 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-f5ethtrailer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-f5ethtrailer.c b/epan/dissectors/packet-f5ethtrailer.c
index 39c89c212f..e1e0f7da80 100644
--- a/epan/dissectors/packet-f5ethtrailer.c
+++ b/epan/dissectors/packet-f5ethtrailer.c
@@ -3810,12 +3810,12 @@ void proto_register_f5ethtrailer (void)
proto_f5ethtrailer_dpt_noise = proto_register_protocol_in_name_only(
"F5 Ethernet trailer provider - Noise", "Noise", "f5ethtrailer.provider.noise",
proto_f5ethtrailer, FT_BYTES);
- noise_subdissector_table = register_dissector_table("f5ethtrailer.noise_type_ver", "F5 Ethernet Trailer Noise", proto_f5ethtrailer, FT_UINT16, BASE_DEC);
+ noise_subdissector_table = register_dissector_table("f5ethtrailer.noise_type_ver", "F5 Ethernet Trailer Noise", proto_f5ethtrailer, FT_UINT32, BASE_DEC);
proto_f5ethtrailer_dpt_tls = proto_register_protocol_in_name_only(
"F5 Ethernet Trailer Protocol - TLS Provider", "F5 TLS", "f5ethtrailer.tls",
proto_f5ethtrailer, FT_BYTES);
tls_subdissector_table = register_dissector_table(
- "f5ethtrailer.tls_type_ver", "F5 Ethernet Trailer TLS", proto_f5ethtrailer, FT_UINT16, BASE_DEC);
+ "f5ethtrailer.tls_type_ver", "F5 Ethernet Trailer TLS", proto_f5ethtrailer, FT_UINT32, BASE_DEC);
/* Analyze Menu Items */
register_conversation_filter("f5ethtrailer", "F5 TCP", f5_tcp_conv_valid, f5_tcp_conv_filter);