aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorJuanjo Martin <juanjo@rti.com>2016-08-30 01:57:32 +0200
committerGuy Harris <guy@alum.mit.edu>2016-08-30 22:58:07 +0000
commit1dbd2216edfe34e3dbb1f8967d325e7fa00ecb51 (patch)
treec4eedc0e19a5c4853e4cfec2de4bd2d4a14a7c0f /epan
parent8b705b3753e345446553b0f36ce2b0c56046145b (diff)
RTPS: Allowing duplicates in the rtps.type_name table
Change-Id: Ie7a35b0bb3275a0895fad646bf9a81406eadf37c Reviewed-on: https://code.wireshark.org/review/17393 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-rtps.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-rtps.c b/epan/dissectors/packet-rtps.c
index 18bca17216..6272a52cfc 100644
--- a/epan/dissectors/packet-rtps.c
+++ b/epan/dissectors/packet-rtps.c
@@ -11627,7 +11627,7 @@ void proto_register_rtps(void) {
register_init_routine(rtps_init);
rtps_type_name_table = register_dissector_table("rtps.type_name", "RTPS Type Name",
- proto_rtps, FT_STRING, BASE_NONE, DISSECTOR_TABLE_NOT_ALLOW_DUPLICATE);
+ proto_rtps, FT_STRING, BASE_NONE, DISSECTOR_TABLE_ALLOW_DUPLICATE);
}