diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2014-07-11 08:17:37 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2014-07-11 08:17:37 +0000 |
commit | 98bd8296efd1fa95723e3955fac0de0e4e787f86 (patch) | |
tree | 97a654d879b45891e79b30c01b52b59c4c3c349d /lib/libssl/s23_clnt.c | |
parent | d50d609d6bbbf147a67c9ed56c441932b23c68e2 (diff) |
No need to keep ssl23_foo() flavours mapping to ssl3_foo().
ok tedu@
Diffstat (limited to 'lib/libssl/s23_clnt.c')
-rw-r--r-- | lib/libssl/s23_clnt.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libssl/s23_clnt.c b/lib/libssl/s23_clnt.c index e2f1544486b..3a72dd3316b 100644 --- a/lib/libssl/s23_clnt.c +++ b/lib/libssl/s23_clnt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: s23_clnt.c,v 1.30 2014/07/10 08:51:14 tedu Exp $ */ +/* $OpenBSD: s23_clnt.c,v 1.31 2014/07/11 08:17:36 miod Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -139,11 +139,11 @@ const SSL_METHOD SSLv23_client_method_data = { .ssl_dispatch_alert = ssl3_dispatch_alert, .ssl_ctrl = ssl3_ctrl, .ssl_ctx_ctrl = ssl3_ctx_ctrl, - .get_cipher_by_char = ssl23_get_cipher_by_char, + .get_cipher_by_char = ssl3_get_cipher_by_char, .put_cipher_by_char = ssl23_put_cipher_by_char, .ssl_pending = ssl_undefined_const_function, - .num_ciphers = ssl23_num_ciphers, - .get_cipher = ssl23_get_cipher, + .num_ciphers = ssl3_num_ciphers, + .get_cipher = ssl3_get_cipher, .get_ssl_method = ssl23_get_client_method, .get_timeout = ssl23_default_timeout, .ssl3_enc = &ssl3_undef_enc_method, |