From 31480a4cf9b7421dfffa30591096c6e8854f1638 Mon Sep 17 00:00:00 2001 From: jsing <> Date: Thu, 12 Oct 2017 16:06:32 +0000 Subject: Rename ssl3_client_hello() to ssl3_send_client_hello() for consistency. --- src/lib/libssl/ssl_clnt.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/lib/libssl/ssl_clnt.c') diff --git a/src/lib/libssl/ssl_clnt.c b/src/lib/libssl/ssl_clnt.c index 33352705d1..56ea99d82e 100644 --- a/src/lib/libssl/ssl_clnt.c +++ b/src/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; -- cgit v1.2.3-55-g6feb