summaryrefslogtreecommitdiff
path: root/src/lib/libssl/ssl_tlsext.c
diff options
context:
space:
mode:
authorkenjiro <>2026-07-31 03:59:50 +0000
committerkenjiro <>2026-07-31 03:59:50 +0000
commit49ff7c051c516a8d190b62787dc46f76275da66a (patch)
treea9311563e340cb83c56d4c2031c66386d2d03418 /src/lib/libssl/ssl_tlsext.c
parent45c467b8b6c3ae8944860a1e15922142d083e4d5 (diff)
downloadopenbsd-49ff7c051c516a8d190b62787dc46f76275da66a.tar.gz
openbsd-49ff7c051c516a8d190b62787dc46f76275da66a.tar.bz2
openbsd-49ff7c051c516a8d190b62787dc46f76275da66a.zip
Make file-local functions static
These functions are only used within their implementation files and do not need external linkage. Mark them static. ok tb
Diffstat (limited to 'src/lib/libssl/ssl_tlsext.c')
-rw-r--r--src/lib/libssl/ssl_tlsext.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libssl/ssl_tlsext.c b/src/lib/libssl/ssl_tlsext.c
index 2755cbc92d..467784da2b 100644
--- a/src/lib/libssl/ssl_tlsext.c
+++ b/src/lib/libssl/ssl_tlsext.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssl_tlsext.c,v 1.163 2026/06/14 15:47:49 jsing Exp $ */ 1/* $OpenBSD: ssl_tlsext.c,v 1.164 2026/07/31 03:59:50 kenjiro Exp $ */
2/* 2/*
3 * Copyright (c) 2016, 2017, 2019 Joel Sing <jsing@openbsd.org> 3 * Copyright (c) 2016, 2017, 2019 Joel Sing <jsing@openbsd.org>
4 * Copyright (c) 2017 Doug Hogan <doug@openbsd.org> 4 * Copyright (c) 2017 Doug Hogan <doug@openbsd.org>
@@ -2567,7 +2567,7 @@ tlsext_build(SSL *s, int is_server, uint16_t msg_type, CBB *cbb)
2567 return 1; 2567 return 1;
2568} 2568}
2569 2569
2570int 2570static int
2571tlsext_clienthello_hash_extension(SSL *s, uint16_t type, CBS *cbs) 2571tlsext_clienthello_hash_extension(SSL *s, uint16_t type, CBS *cbs)
2572{ 2572{
2573 /* 2573 /*