diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2016-11-04 18:30:22 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2016-11-04 18:30:22 +0000 |
commit | 0cac14782b3b99cc7c5422b6cce5cbf715fc6d08 (patch) | |
tree | 474cb16834a6217f38c4d4c8a1a654e7cdc0a6ad /lib/libssl/d1_meth.c | |
parent | 9e778de879032ffc43e5895914e55498b71e0ff6 (diff) |
The *_method_data structures can be static
ok jsing@
Diffstat (limited to 'lib/libssl/d1_meth.c')
-rw-r--r-- | lib/libssl/d1_meth.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libssl/d1_meth.c b/lib/libssl/d1_meth.c index 7f279a4f50c..83917e336d7 100644 --- a/lib/libssl/d1_meth.c +++ b/lib/libssl/d1_meth.c @@ -1,4 +1,4 @@ -/* $OpenBSD: d1_meth.c,v 1.9 2015/02/06 08:30:23 jsing Exp $ */ +/* $OpenBSD: d1_meth.c,v 1.10 2016/11/04 18:30:21 guenther Exp $ */ /* * DTLS implementation written by Nagendra Modadugu * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. @@ -65,7 +65,7 @@ static const SSL_METHOD *dtls1_get_method(int ver); -const SSL_METHOD DTLSv1_method_data = { +static const SSL_METHOD DTLSv1_method_data = { .version = DTLS1_VERSION, .ssl_new = dtls1_new, .ssl_clear = dtls1_clear, |