From: Andreas Steffen Date: Sun, 20 Feb 2011 14:18:36 +0000 (+0100) Subject: prevent multiple debug outputs in case of non-monolithic plugins X-Git-Tag: 4.5.2~260 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1a9f2443a222345b66732f56bdc7065b488250cb;p=thirdparty%2Fstrongswan.git prevent multiple debug outputs in case of non-monolithic plugins --- diff --git a/src/libstrongswan/plugins/plugin_loader.c b/src/libstrongswan/plugins/plugin_loader.c index 473db5ccf2..9366ef3cf5 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)