summaryrefslogtreecommitdiffstats
path: root/lib/libssl/tls13_client.c
diff options
context:
space:
mode:
authorjsing <jsing@openbsd.org>2019-11-17 06:30:12 +0000
committerjsing <jsing@openbsd.org>2019-11-17 06:30:12 +0000
commitc583471fc26599cd70b02a5a7c57f006b3785176 (patch)
tree37fd69e7134ca4d17dec3c094004c61ca41c1189 /lib/libssl/tls13_client.c
parentUse disable-bt overlay with raspberry pi so the pl011 will be used as (diff)
downloadwireguard-openbsd-c583471fc26599cd70b02a5a7c57f006b3785176.tar.xz
wireguard-openbsd-c583471fc26599cd70b02a5a7c57f006b3785176.zip
tls13_connect() should be static.
Diffstat (limited to 'lib/libssl/tls13_client.c')
-rw-r--r--lib/libssl/tls13_client.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libssl/tls13_client.c b/lib/libssl/tls13_client.c
index 3b625212de8..6dcf8c85b67 100644
--- a/lib/libssl/tls13_client.c
+++ b/lib/libssl/tls13_client.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tls13_client.c,v 1.18 2019/11/17 03:04:18 beck Exp $ */
+/* $OpenBSD: tls13_client.c,v 1.19 2019/11/17 06:30:12 jsing Exp $ */
/*
* Copyright (c) 2018, 2019 Joel Sing <jsing@openbsd.org>
*
@@ -25,7 +25,7 @@
#include "tls13_handshake.h"
#include "tls13_internal.h"
-int
+static int
tls13_connect(struct tls13_ctx *ctx)
{
if (ctx->mode != TLS13_HS_CLIENT)