aboutsummaryrefslogtreecommitdiff
path: root/jessl.f90
diff options
context:
space:
mode:
authorJeffrey Armstrong <jeff@approximatrix.com>2020-05-13 06:44:16 -0400
committerJeffrey Armstrong <jeff@approximatrix.com>2020-05-13 06:44:16 -0400
commitb470a0c853d060d059e4890f6cbe6ef672edb6ea (patch)
tree3c4e98c2c027f6c7e44e1cae222fe11d2e82e86b /jessl.f90
parent8de10aa414b9cce25003beb333f2a8b1bb858098 (diff)
downloadLR-87-b470a0c853d060d059e4890f6cbe6ef672edb6ea.tar.gz
LR-87-b470a0c853d060d059e4890f6cbe6ef672edb6ea.zip
Switched to a non-deprecated call for TLS initialization
Diffstat (limited to 'jessl.f90')
-rw-r--r--jessl.f906
1 files changed, 3 insertions, 3 deletions
diff --git a/jessl.f90 b/jessl.f90
index 0ee890e..bd9d1fe 100644
--- a/jessl.f90
+++ b/jessl.f90
@@ -36,10 +36,10 @@ implicit none
subroutine load_error_strings() bind(c, name="SSL_load_error_strings")
end subroutine load_error_strings
- function tls_v1_3_client_method() bind(c, name="TLSv1_2_client_method")
+ function tls_client_method() bind(c, name="TLS_client_method")
use iso_c_binding
- type(c_ptr)::tls_v1_3_client_method
- end function tls_v1_3_client_method
+ type(c_ptr)::tls_client_method
+ end function tls_client_method
function ctx_new(meth) bind(c, name="SSL_CTX_new")
use iso_c_binding