]> git.ipfire.org Git - thirdparty/strongswan.git/commitdiff
prevent multiple debug outputs in case of non-monolithic plugins
authorAndreas Steffen <andreas.steffen@strongswan.org>
Sun, 20 Feb 2011 14:18:36 +0000 (15:18 +0100)
committerAndreas Steffen <andreas.steffen@strongswan.org>
Sun, 20 Feb 2011 14:18:36 +0000 (15:18 +0100)
src/libstrongswan/plugins/plugin_loader.c

index 473db5ccf26e3a4ef1dd434a06d42a5425aa3e38..9366ef3cf5f3df5907d793b4846f3fcd72038f0e 100644 (file)
@@ -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)