diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2011-02-20 15:18:36 +0100 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2011-02-20 15:18:36 +0100 |
commit | 1a9f2443a222345b66732f56bdc7065b488250cb (patch) | |
tree | 629398225d6442fec0174f6825871c8b408d9d00 /src/libstrongswan/plugins/plugin_loader.c | |
parent | 07bda3feea7943f74ff8a0bab92084a402fe2d1b (diff) | |
download | strongswan-1a9f2443a222345b66732f56bdc7065b488250cb.tar.bz2 strongswan-1a9f2443a222345b66732f56bdc7065b488250cb.tar.xz |
prevent multiple debug outputs in case of non-monolithic plugins
Diffstat (limited to 'src/libstrongswan/plugins/plugin_loader.c')
-rw-r--r-- | src/libstrongswan/plugins/plugin_loader.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/libstrongswan/plugins/plugin_loader.c b/src/libstrongswan/plugins/plugin_loader.c index 473db5ccf..9366ef3cf 100644 --- a/src/libstrongswan/plugins/plugin_loader.c +++ b/src/libstrongswan/plugins/plugin_loader.c @@ -70,8 +70,6 @@ static status_t create_plugin(private_plugin_loader_t *this, void *handle, constructor = dlsym(handle, create); if (constructor == NULL) { - DBG2(DBG_LIB, "plugin '%s': failed to load - %s not found", name, - create); return NOT_FOUND; } if (integrity && lib->integrity) |