summaryrefslogtreecommitdiff
path: root/src/plugin.c
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2008-06-28 09:55:39 +0200
committerMarcel Holtmann <marcel@holtmann.org>2008-06-28 09:55:39 +0200
commit29e32b19209edcead937e85b0da62746c19ee625 (patch)
treee7609fa23f618196c59a3cf58638043f0cb373d1 /src/plugin.c
parente7fcf53b8b53c0e69996d8881713694b8c48f016 (diff)
downloadconnman-29e32b19209edcead937e85b0da62746c19ee625.tar.gz
connman-29e32b19209edcead937e85b0da62746c19ee625.tar.bz2
connman-29e32b19209edcead937e85b0da62746c19ee625.zip
Don't use libconnman- prefix for plugins
Diffstat (limited to 'src/plugin.c')
-rw-r--r--src/plugin.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/plugin.c b/src/plugin.c
index 404ef9ec..7f8b16c4 100644
--- a/src/plugin.c
+++ b/src/plugin.c
@@ -69,8 +69,7 @@ static void load_plugins(const gchar *path)
GModule *module;
struct connman_plugin_desc *desc;
- if (g_str_has_prefix(file, "libconnman") == FALSE ||
- g_str_has_suffix(file, ".so") == FALSE)
+ if (g_str_has_suffix(file, ".so") == FALSE)
continue;
filename = g_build_filename(path, file, NULL);