summaryrefslogtreecommitdiff
path: root/src/lib/libssl/s23_clnt.c
diff options
context:
space:
mode:
authormiod <>2014-07-11 08:17:36 +0000
committermiod <>2014-07-11 08:17:36 +0000
commit86b5303a54b4edb30db98ef7e4449b166d992bb5 (patch)
treeab9b73426bba5da242022c216cdfb919c2be04cb /src/lib/libssl/s23_clnt.c
parent22d34c2d8bc5e1aef79a43753b71073bff378ce9 (diff)
downloadopenbsd-86b5303a54b4edb30db98ef7e4449b166d992bb5.tar.gz
openbsd-86b5303a54b4edb30db98ef7e4449b166d992bb5.tar.bz2
openbsd-86b5303a54b4edb30db98ef7e4449b166d992bb5.zip
No need to keep ssl23_foo() flavours mapping to ssl3_foo().
ok tedu@
Diffstat (limited to 'src/lib/libssl/s23_clnt.c')
-rw-r--r--src/lib/libssl/s23_clnt.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/libssl/s23_clnt.c b/src/lib/libssl/s23_clnt.c
index e2f1544486..3a72dd3316 100644
--- a/src/lib/libssl/s23_clnt.c
+++ b/src/lib/libssl/s23_clnt.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: s23_clnt.c,v 1.30 2014/07/10 08:51:14 tedu Exp $ */ 1/* $OpenBSD: s23_clnt.c,v 1.31 2014/07/11 08:17:36 miod Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -139,11 +139,11 @@ const SSL_METHOD SSLv23_client_method_data = {
139 .ssl_dispatch_alert = ssl3_dispatch_alert, 139 .ssl_dispatch_alert = ssl3_dispatch_alert,
140 .ssl_ctrl = ssl3_ctrl, 140 .ssl_ctrl = ssl3_ctrl,
141 .ssl_ctx_ctrl = ssl3_ctx_ctrl, 141 .ssl_ctx_ctrl = ssl3_ctx_ctrl,
142 .get_cipher_by_char = ssl23_get_cipher_by_char, 142 .get_cipher_by_char = ssl3_get_cipher_by_char,
143 .put_cipher_by_char = ssl23_put_cipher_by_char, 143 .put_cipher_by_char = ssl23_put_cipher_by_char,
144 .ssl_pending = ssl_undefined_const_function, 144 .ssl_pending = ssl_undefined_const_function,
145 .num_ciphers = ssl23_num_ciphers, 145 .num_ciphers = ssl3_num_ciphers,
146 .get_cipher = ssl23_get_cipher, 146 .get_cipher = ssl3_get_cipher,
147 .get_ssl_method = ssl23_get_client_method, 147 .get_ssl_method = ssl23_get_client_method,
148 .get_timeout = ssl23_default_timeout, 148 .get_timeout = ssl23_default_timeout,
149 .ssl3_enc = &ssl3_undef_enc_method, 149 .ssl3_enc = &ssl3_undef_enc_method,