diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2008-06-28 09:55:39 +0200 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2008-06-28 09:55:39 +0200 |
commit | 29e32b19209edcead937e85b0da62746c19ee625 (patch) | |
tree | e7609fa23f618196c59a3cf58638043f0cb373d1 /src/plugin.c | |
parent | e7fcf53b8b53c0e69996d8881713694b8c48f016 (diff) | |
download | connman-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.c | 3 |
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); |