From 817ad1345229aa439c24508d4db10738c0825797 Mon Sep 17 00:00:00 2001 From: guenther <> Date: Fri, 4 Nov 2016 18:33:11 +0000 Subject: Mark a couple local functions as static ok jsing@ beck@ --- src/lib/libssl/d1_lib.c | 4 ++-- src/lib/libssl/s23_srvr.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'src/lib') diff --git a/src/lib/libssl/d1_lib.c b/src/lib/libssl/d1_lib.c index 23a7021d35..56c79f30aa 100644 --- a/src/lib/libssl/d1_lib.c +++ b/src/lib/libssl/d1_lib.c @@ -1,4 +1,4 @@ -/* $OpenBSD: d1_lib.c,v 1.33 2016/02/29 06:48:03 mmcc Exp $ */ +/* $OpenBSD: d1_lib.c,v 1.34 2016/11/04 18:33:11 guenther Exp $ */ /* * DTLS implementation written by Nagendra Modadugu * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. @@ -70,7 +70,7 @@ #include "pqueue.h" #include "ssl_locl.h" -int dtls1_listen(SSL *s, struct sockaddr *client); +static int dtls1_listen(SSL *s, struct sockaddr *client); SSL3_ENC_METHOD DTLSv1_enc_data = { .enc = dtls1_enc, 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 @@ -/* $OpenBSD: s23_srvr.c,v 1.47 2016/07/16 04:42:35 beck Exp $ */ +/* $OpenBSD: s23_srvr.c,v 1.48 2016/11/04 18:33:11 guenther Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -117,7 +117,7 @@ #include #include -int ssl23_get_client_hello(SSL *s); +static int ssl23_get_client_hello(SSL *s); int ssl23_accept(SSL *s) -- cgit v1.2.3-55-g6feb