aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
Diffstat (limited to 'epan')
-rw-r--r--epan/plugins.c2
-rw-r--r--epan/plugins.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/epan/plugins.c b/epan/plugins.c
index 563baeae6f..fcf694a099 100644
--- a/epan/plugins.c
+++ b/epan/plugins.c
@@ -139,7 +139,7 @@ plugins_scan_dir(const char *dirname)
WS_DIRENT *file; /* current file */
const char *name;
gchar filename[FILENAME_LEN]; /* current file name */
- GModule *handle; /* handle returned by dlopen */
+ GModule *handle; /* handle returned by g_module_open */
gchar *version;
gpointer gp;
void (*register_protoinfo)(void);
diff --git a/epan/plugins.h b/epan/plugins.h
index 02fbfa83db..b11c4748ec 100644
--- a/epan/plugins.h
+++ b/epan/plugins.h
@@ -31,7 +31,7 @@
#include "packet.h"
typedef struct _plugin {
- GModule *handle; /* handle returned by dlopen */
+ GModule *handle; /* handle returned by g_module_open */
gchar *name; /* plugin name */
gchar *version; /* plugin version */
void (*register_protoinfo)(void); /* routine to call to register protocol information */