summaryrefslogtreecommitdiffstats
path: root/ssl.c
diff options
context:
space:
mode:
authorAdriaan de Jong <dejong@fox-it.com>2011-06-23 11:40:52 +0200
committerDavid Sommerseth <davids@redhat.com>2011-10-19 22:09:53 +0200
commitb01cb9ef6b7ed5769f925fc96b6eb534c794203f (patch)
tree8ac6b1fbe65fe99b343e5e2c81a9a6c2bf7ff0a3 /ssl.c
parent330715f0abec92dad434f3ca38557e5cff03f2a3 (diff)
downloadopenvpn-b01cb9ef6b7ed5769f925fc96b6eb534c794203f.tar.gz
openvpn-b01cb9ef6b7ed5769f925fc96b6eb534c794203f.tar.xz
openvpn-b01cb9ef6b7ed5769f925fc96b6eb534c794203f.zip
Refactored crypto initialisation functions
Signed-off-by: Adriaan de Jong <dejong@fox-it.com> Acked-by: David Sommerseth <davids@redhat.com> Signed-off-by: David Sommerseth <davids@redhat.com>
Diffstat (limited to 'ssl.c')
-rw-r--r--ssl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ssl.c b/ssl.c
index c9af94b..5b5b893 100644
--- a/ssl.c
+++ b/ssl.c
@@ -226,7 +226,7 @@ init_ssl_lib ()
SSL_load_error_strings ();
OpenSSL_add_all_algorithms ();
- init_crypto_lib();
+ crypto_init_lib();
/*
* If you build the OpenSSL library and OpenVPN with
@@ -250,7 +250,7 @@ free_ssl_lib ()
fclose (fp);
#endif
- uninit_crypto_lib ();
+ crypto_uninit_lib ();
EVP_cleanup ();
ERR_free_strings ();
}