summaryrefslogtreecommitdiff
path: root/epan/plugins.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/plugins.c')
-rw-r--r--epan/plugins.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/plugins.c b/epan/plugins.c
index ed8aaa3f8c..8837b847cf 100644
--- a/epan/plugins.c
+++ b/epan/plugins.c
@@ -132,8 +132,8 @@ static void
plugins_scan_dir(const char *dirname)
{
#define FILENAME_LEN 1024
- ETH_DIR *dir; /* scanned directory */
- ETH_DIRENT *file; /* current file */
+ WS_DIR *dir; /* scanned directory */
+ WS_DIRENT *file; /* current file */
const char *name;
gchar filename[FILENAME_LEN]; /* current file name */
GModule *handle; /* handle returned by dlopen */
@@ -342,8 +342,8 @@ init_plugins(void)
const char *name;
char *plugin_dir_path;
char *plugins_pers_dir;
- ETH_DIR *dir; /* scanned directory */
- ETH_DIRENT *file; /* current file */
+ WS_DIR *dir; /* scanned directory */
+ WS_DIRENT *file; /* current file */
if (plugin_list == NULL) /* ensure init_plugins is only run once */
{