aboutsummaryrefslogtreecommitdiffstats
path: root/epan/packet.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/packet.c')
-rw-r--r--epan/packet.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/epan/packet.c b/epan/packet.c
index b26c46a18c..b44c37074d 100644
--- a/epan/packet.c
+++ b/epan/packet.c
@@ -1775,7 +1775,11 @@ dissector_add_for_decode_as(const char *name, dissector_handle_t handle)
dup_handle = (dissector_handle_t)entry->data;
if (dup_handle->protocol == handle->protocol)
{
- fprintf(stderr, "Duplicative protocol %s in %s\n", proto_get_protocol_short_name(handle->protocol), name);
+ fprintf(stderr, "Duplicate dissectors %s and %s for protocol %s in dissector table %s\n",
+ dissector_handle_get_dissector_name(handle),
+ dissector_handle_get_dissector_name(dup_handle),
+ proto_get_protocol_short_name(handle->protocol),
+ name);
if (getenv("WIRESHARK_ABORT_ON_DISSECTOR_BUG") != NULL)
abort();
}