- Support for SWID IMC/IMV - Support for command line IKE client charon-cmd - Changed location of pki to /usr/bin - Added swid tags files - Added man pages for pki and charon-cmd - Renamed pki to strongswan-pki to avoid conflict with pki-core/pki-tools package. - Update local patches - Fixes CVE-2013-6075 - Fixes CVE-2013-6076 - Fixed autoconf/automake issue as configure.ac got changed and it required running autoreconf during the build process. - added strongswan signature file to the sources.
13 lines
624 B
Diff
13 lines
624 B
Diff
diff -urNp strongswan-5.1.1-patched/src/libstrongswan/plugins/plugin_loader.c strongswan-5.1.1-current/src/libstrongswan/plugins/plugin_loader.c
|
|
--- strongswan-5.1.1-patched/src/libstrongswan/plugins/plugin_loader.c 2013-11-01 13:12:06.046927153 -0400
|
|
+++ strongswan-5.1.1-current/src/libstrongswan/plugins/plugin_loader.c 2013-11-01 13:16:59.680916657 -0400
|
|
@@ -353,7 +353,7 @@ static plugin_entry_t *load_plugin(priva
|
|
return NULL;
|
|
}
|
|
}
|
|
- handle = dlopen(file, RTLD_LAZY);
|
|
+ handle = dlopen(file, RTLD_NOW|RTLD_GLOBAL);
|
|
if (handle == NULL)
|
|
{
|
|
DBG1(DBG_LIB, "plugin '%s' failed to load: %s", name, dlerror());
|