aboutsummaryrefslogtreecommitdiffstats
path: root/src/libstrongswan/plugins/plugin_loader.c
diff options
context:
space:
mode:
authorAndreas Steffen <andreas.steffen@strongswan.org>2009-07-18 11:23:27 +0200
committerAndreas Steffen <andreas.steffen@strongswan.org>2009-07-18 11:23:27 +0200
commitdef1777ecaaf370c5e10d9e0d9528297a02d2825 (patch)
tree41f9221c18b5d14cc9beff24fdc84406621e42f9 /src/libstrongswan/plugins/plugin_loader.c
parent1d941f12ad9bb1be0b7adc252478f7c92c5d08b6 (diff)
downloadstrongswan-def1777ecaaf370c5e10d9e0d9528297a02d2825.tar.bz2
strongswan-def1777ecaaf370c5e10d9e0d9528297a02d2825.tar.xz
streamlined integrity test output some more
Diffstat (limited to 'src/libstrongswan/plugins/plugin_loader.c')
-rw-r--r--src/libstrongswan/plugins/plugin_loader.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/libstrongswan/plugins/plugin_loader.c b/src/libstrongswan/plugins/plugin_loader.c
index b402090df..459ba9ba9 100644
--- a/src/libstrongswan/plugins/plugin_loader.c
+++ b/src/libstrongswan/plugins/plugin_loader.c
@@ -66,12 +66,9 @@ static plugin_t* load_plugin(private_plugin_loader_t *this,
{
if (!lib->integrity->check_file(lib->integrity, name, file))
{
- DBG1("plugin '%s': failed file integrity test of"
- " 'libstrongswan-%s.so'", name, name);
+ DBG1("plugin '%s': failed file integrity test of '%s'", name, file);
return NULL;
}
- DBG1("plugin '%s': passed file integrity test of"
- " 'libstrongswan-%s.so'", name, name);
}
handle = dlopen(file, RTLD_LAZY);
if (handle == NULL)
@@ -94,7 +91,7 @@ static plugin_t* load_plugin(private_plugin_loader_t *this,
dlclose(handle);
return NULL;
}
- DBG1("plugin '%s': passed segment integrity test", name);
+ DBG1("plugin '%s': passed file and segment integrity tests", name);
}
plugin = constructor();
if (plugin == NULL)