summaryrefslogtreecommitdiff
path: root/src/lib/libssl/s23_srvr.c
diff options
context:
space:
mode:
authorguenther <>2016-11-04 18:33:11 +0000
committerguenther <>2016-11-04 18:33:11 +0000
commit817ad1345229aa439c24508d4db10738c0825797 (patch)
tree93b075bad2df4dc862badcd998b53b2130d65575 /src/lib/libssl/s23_srvr.c
parentf06dead3f809a0ce64ffcb747a5c257c1f5b3af5 (diff)
downloadopenbsd-817ad1345229aa439c24508d4db10738c0825797.tar.gz
openbsd-817ad1345229aa439c24508d4db10738c0825797.tar.bz2
openbsd-817ad1345229aa439c24508d4db10738c0825797.zip
Mark a couple local functions as static
ok jsing@ beck@
Diffstat (limited to 'src/lib/libssl/s23_srvr.c')
-rw-r--r--src/lib/libssl/s23_srvr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libssl/s23_srvr.c b/src/lib/libssl/s23_srvr.c
index ed476c70d1..edb1f637ea 100644
--- a/src/lib/libssl/s23_srvr.c
+++ b/src/lib/libssl/s23_srvr.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: s23_srvr.c,v 1.47 2016/07/16 04:42:35 beck Exp $ */ 1/* $OpenBSD: s23_srvr.c,v 1.48 2016/11/04 18:33:11 guenther 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 *
@@ -117,7 +117,7 @@
117#include <openssl/evp.h> 117#include <openssl/evp.h>
118#include <openssl/objects.h> 118#include <openssl/objects.h>
119 119
120int ssl23_get_client_hello(SSL *s); 120static int ssl23_get_client_hello(SSL *s);
121 121
122int 122int
123ssl23_accept(SSL *s) 123ssl23_accept(SSL *s)