aboutsummaryrefslogtreecommitdiffstats
path: root/epan/plugins.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2010-10-12 18:25:42 +0000
committerGuy Harris <guy@alum.mit.edu>2010-10-12 18:25:42 +0000
commitf2f1023487ad8aa88f3d3ab58fff0cb34f64f2d7 (patch)
tree149762105606f8fd8d4e1cbdcdb93c3e9283efc8 /epan/plugins.c
parent2b0f6a63f1585db5d0285728e92e946d6cbb58a5 (diff)
Fix comments (not all platforms on which we run support dlopen(), but
GLib handles that with g_module_open() as a platform-independent "load a module at run time" wrapper). svn path=/trunk/; revision=34491
Diffstat (limited to 'epan/plugins.c')
-rw-r--r--epan/plugins.c2
1 files changed, 1 insertions, 1 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);