diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2016-11-04 18:33:12 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2016-11-04 18:33:12 +0000 |
commit | 8b740d08d0fe3bca78b268b19f77ac8f3cf8d4e0 (patch) | |
tree | 3ee833b254f7f05df0da7a2de8eaee7118d582d5 /lib/libssl/d1_lib.c | |
parent | 0cac14782b3b99cc7c5422b6cce5cbf715fc6d08 (diff) |
Mark a couple local functions as static
ok jsing@ beck@
Diffstat (limited to 'lib/libssl/d1_lib.c')
-rw-r--r-- | lib/libssl/d1_lib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libssl/d1_lib.c b/lib/libssl/d1_lib.c index 23a7021d356..56c79f30aa8 100644 --- a/lib/libssl/d1_lib.c +++ b/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, |