summaryrefslogtreecommitdiffstats
path: root/lib/libssl/ssl_clnt.c
diff options
context:
space:
mode:
authorjsing <jsing@openbsd.org>2017-10-12 16:06:32 +0000
committerjsing <jsing@openbsd.org>2017-10-12 16:06:32 +0000
commite39acaa983495fb3411ee563958292006ceccd10 (patch)
tree295c9c3943eceb4f2505aa9b591c083264b0be20 /lib/libssl/ssl_clnt.c
parentFold dtls1_accept() into ssl_accept(), removing a lot of duplicated code. (diff)
downloadwireguard-openbsd-e39acaa983495fb3411ee563958292006ceccd10.tar.xz
wireguard-openbsd-e39acaa983495fb3411ee563958292006ceccd10.zip
Rename ssl3_client_hello() to ssl3_send_client_hello() for consistency.
Diffstat (limited to 'lib/libssl/ssl_clnt.c')
-rw-r--r--lib/libssl/ssl_clnt.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libssl/ssl_clnt.c b/lib/libssl/ssl_clnt.c
index 33352705d18..56ea99d82e5 100644
--- a/lib/libssl/ssl_clnt.c
+++ b/lib/libssl/ssl_clnt.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ssl_clnt.c,v 1.21 2017/10/11 17:35:00 jsing Exp $ */
+/* $OpenBSD: ssl_clnt.c,v 1.22 2017/10/12 16:06:32 jsing Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
@@ -277,7 +277,7 @@ ssl3_connect(SSL *s)
dtls1_start_timer(s);
}
- ret = ssl3_client_hello(s);
+ ret = ssl3_send_client_hello(s);
if (ret <= 0)
goto end;
@@ -661,7 +661,7 @@ end:
}
int
-ssl3_client_hello(SSL *s)
+ssl3_send_client_hello(SSL *s)
{
CBB cbb, client_hello, session_id, cookie, cipher_suites;
CBB compression_methods;