summaryrefslogtreecommitdiff
path: root/epan/plugins.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2008-10-27 04:47:57 +0000
committerGerald Combs <gerald@wireshark.org>2008-10-27 04:47:57 +0000
commit09bf9e694629b37f201467b988589573f5c3acf9 (patch)
tree2751ea93785d63f9b3e18491db9a4acf9999f162 /epan/plugins.c
parentb8b74f901ddcf364155fefdd62229b26fd945e7f (diff)
downloadwireshark-09bf9e694629b37f201467b988589573f5c3acf9.tar.gz
ETH -> WS updates.
svn path=/trunk/; revision=26570
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 */
{