aboutsummaryrefslogtreecommitdiff
path: root/ssl/t1_meth.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2013-03-13 13:30:44 +0000
committerDr. Stephen Henson <steve@openssl.org>2013-03-18 14:53:59 +0000
commit6de2649a6b349bde9c9fb62c3a3d5d6344d8259c (patch)
treed08b6a4c7fcd93e1ff04c4eaeecb84c1011836a1 /ssl/t1_meth.c
parent173e72e64c6a07ae97660c322396b66215009f33 (diff)
downloadopenssl-6de2649a6b349bde9c9fb62c3a3d5d6344d8259c.zip
openssl-6de2649a6b349bde9c9fb62c3a3d5d6344d8259c.tar.gz
openssl-6de2649a6b349bde9c9fb62c3a3d5d6344d8259c.tar.bz2
Use appropriate versions of SSL3_ENC_METHOD
Diffstat (limited to 'ssl/t1_meth.c')
-rw-r--r--ssl/t1_meth.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/ssl/t1_meth.c b/ssl/t1_meth.c
index 53c807d..5162678 100644
--- a/ssl/t1_meth.c
+++ b/ssl/t1_meth.c
@@ -74,15 +74,18 @@ static const SSL_METHOD *tls1_get_method(int ver)
IMPLEMENT_tls_meth_func(TLS1_2_VERSION, TLSv1_2_method,
ssl3_accept,
ssl3_connect,
- tls1_get_method)
+ tls1_get_method,
+ TLSv1_2_enc_data)
IMPLEMENT_tls_meth_func(TLS1_1_VERSION, TLSv1_1_method,
ssl3_accept,
ssl3_connect,
- tls1_get_method)
+ tls1_get_method,
+ TLSv1_1_enc_data)
IMPLEMENT_tls_meth_func(TLS1_VERSION, TLSv1_method,
ssl3_accept,
ssl3_connect,
- tls1_get_method)
+ tls1_get_method,
+ TLSv1_enc_data)