From 1a9f2443a222345b66732f56bdc7065b488250cb Mon Sep 17 00:00:00 2001 From: Andreas Steffen Date: Sun, 20 Feb 2011 15:18:36 +0100 Subject: [PATCH] prevent multiple debug outputs in case of non-monolithic plugins --- src/libstrongswan/plugins/plugin_loader.c | 2 -- 1 file changed, 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)