diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2016-11-04 19:11:44 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2016-11-04 19:11:44 +0000 |
commit | cb147fa7674b11623a346c47f551fc5a06377ac5 (patch) | |
tree | ca7b91226388095fb3e77fea47cf17008f709f66 /lib/libssl/ssl_locl.h | |
parent | 4ee6217610afeeabf657ab0b645a798614829bb0 (diff) |
Rename ssl3_get_key_exchange() to ssl3_get_server_key_exchange(), since
that's what it really is.
ok miod@
Diffstat (limited to 'lib/libssl/ssl_locl.h')
-rw-r--r-- | lib/libssl/ssl_locl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libssl/ssl_locl.h b/lib/libssl/ssl_locl.h index 5a146ce0b4f..1b3838a33f4 100644 --- a/lib/libssl/ssl_locl.h +++ b/lib/libssl/ssl_locl.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl_locl.h,v 1.133 2016/11/04 18:28:58 guenther Exp $ */ +/* $OpenBSD: ssl_locl.h,v 1.134 2016/11/04 19:11:43 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -704,7 +704,7 @@ int ssl3_send_client_verify(SSL *s); int ssl3_send_client_certificate(SSL *s); int ssl_do_client_cert_cb(SSL *s, X509 **px509, EVP_PKEY **ppkey); int ssl3_send_client_key_exchange(SSL *s); -int ssl3_get_key_exchange(SSL *s); +int ssl3_get_server_key_exchange(SSL *s); int ssl3_get_server_certificate(SSL *s); int ssl3_check_cert_and_algorithm(SSL *s); int ssl3_check_finished(SSL *s); |