aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoão Valverde <joao.valverde@tecnico.ulisboa.pt>2018-01-22 08:20:42 +0000
committerJoão Valverde <j@v6e.pt>2018-01-28 21:34:22 +0000
commit66f85c65d55df62fffb9e9acf99f882e7c664b2d (patch)
tree1ab72de2c6e120d25a7c5b433c3a751285e1a7a2
parent5d1687e449a8441f606a4559734f2fae5879f4f5 (diff)
plugins: Remove nordic_ble.dll exception
This should no longer be necessary with the sub-version directory struture. If the user is installing a DLL for a built-in plugin, an error message is appropriate. Change-Id: I80842f1ea03a08594321a674650a1373aaa48712 Reviewed-on: https://code.wireshark.org/review/25500 Reviewed-by: João Valverde <j@v6e.pt>
-rw-r--r--wsutil/plugins.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/wsutil/plugins.c b/wsutil/plugins.c
index 3fdcae8669..d6ddccb7b7 100644
--- a/wsutil/plugins.c
+++ b/wsutil/plugins.c
@@ -126,16 +126,6 @@ scan_plugins_dir(GHashTable *plugins_module, const char *dirpath, plugin_type_e
if (!g_str_has_suffix(name, "." G_MODULE_SUFFIX))
continue;
-#if WIN32
- if (strncmp(name, "nordic_ble.dll", 14) == 0) {
- /*
- * Skip the Nordic BLE Sniffer dll on WIN32 because
- * the dissector has been added as internal.
- */
- continue;
- }
-#endif
-
/*
* Check if the same name is already registered.
*/