diff options
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/Makefile.am | 3 | ||||
-rw-r--r-- | scripts/dh_speed.c | 2 | ||||
-rw-r--r-- | scripts/pubkey_speed.c | 2 |
3 files changed, 3 insertions, 4 deletions
diff --git a/scripts/Makefile.am b/scripts/Makefile.am index 8a70d79e2..24e3cd164 100644 --- a/scripts/Makefile.am +++ b/scripts/Makefile.am @@ -1,7 +1,6 @@ INCLUDES = -I$(top_srcdir)/src/libstrongswan AM_CFLAGS = \ --DPLUGINS="\"${libstrongswan_plugins}\"" \ --DSTRONGSWAN_CONF=\"${strongswan_conf}\" +-DPLUGINS="\"${libstrongswan_plugins}\"" noinst_PROGRAMS = bin2array bin2sql id2sql key2keyid keyid2sql \ thread_analysis dh_speed pubkey_speed diff --git a/scripts/dh_speed.c b/scripts/dh_speed.c index 80a1d2d30..b85bf1ad8 100644 --- a/scripts/dh_speed.c +++ b/scripts/dh_speed.c @@ -101,7 +101,7 @@ int main(int argc, char *argv[]) usage(); } - library_init(STRONGSWAN_CONF); + library_init(NULL); lib->plugins->load(lib->plugins, NULL, argv[1]); atexit(library_deinit); diff --git a/scripts/pubkey_speed.c b/scripts/pubkey_speed.c index b51de0961..e6c668832 100644 --- a/scripts/pubkey_speed.c +++ b/scripts/pubkey_speed.c @@ -59,7 +59,7 @@ int main(int argc, char *argv[]) usage(); } - library_init(STRONGSWAN_CONF); + library_init(NULL); lib->plugins->load(lib->plugins, NULL, argv[1]); atexit(library_deinit); |