summaryrefslogtreecommitdiff
path: root/src/lib/libssl/ssl_clnt.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libssl/ssl_clnt.c')
-rw-r--r--src/lib/libssl/ssl_clnt.c6
1 files changed, 3 insertions, 3 deletions
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 @@
1/* $OpenBSD: ssl_clnt.c,v 1.21 2017/10/11 17:35:00 jsing Exp $ */ 1/* $OpenBSD: ssl_clnt.c,v 1.22 2017/10/12 16:06:32 jsing 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 *
@@ -277,7 +277,7 @@ ssl3_connect(SSL *s)
277 dtls1_start_timer(s); 277 dtls1_start_timer(s);
278 } 278 }
279 279
280 ret = ssl3_client_hello(s); 280 ret = ssl3_send_client_hello(s);
281 if (ret <= 0) 281 if (ret <= 0)
282 goto end; 282 goto end;
283 283
@@ -661,7 +661,7 @@ end:
661} 661}
662 662
663int 663int
664ssl3_client_hello(SSL *s) 664ssl3_send_client_hello(SSL *s)
665{ 665{
666 CBB cbb, client_hello, session_id, cookie, cipher_suites; 666 CBB cbb, client_hello, session_id, cookie, cipher_suites;
667 CBB compression_methods; 667 CBB compression_methods;