diff options
author | guenther <> | 2016-11-04 18:30:21 +0000 |
---|---|---|
committer | guenther <> | 2016-11-04 18:30:21 +0000 |
commit | f06dead3f809a0ce64ffcb747a5c257c1f5b3af5 (patch) | |
tree | 538aecbf35d74953630e3affaa9b1ec44cdf1a9b /src/lib/libssl/d1_clnt.c | |
parent | 8cc65628c4d521b267ce848806b81a4cf70a662f (diff) | |
download | openbsd-f06dead3f809a0ce64ffcb747a5c257c1f5b3af5.tar.gz openbsd-f06dead3f809a0ce64ffcb747a5c257c1f5b3af5.tar.bz2 openbsd-f06dead3f809a0ce64ffcb747a5c257c1f5b3af5.zip |
The *_method_data structures can be static
ok jsing@
Diffstat (limited to 'src/lib/libssl/d1_clnt.c')
-rw-r--r-- | src/lib/libssl/d1_clnt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libssl/d1_clnt.c b/src/lib/libssl/d1_clnt.c index e018874f0d..d1372326b4 100644 --- a/src/lib/libssl/d1_clnt.c +++ b/src/lib/libssl/d1_clnt.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: d1_clnt.c,v 1.56 2016/03/11 07:08:45 mmcc Exp $ */ | 1 | /* $OpenBSD: d1_clnt.c,v 1.57 2016/11/04 18:30:21 guenther Exp $ */ |
2 | /* | 2 | /* |
3 | * DTLS implementation written by Nagendra Modadugu | 3 | * DTLS implementation written by Nagendra Modadugu |
4 | * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. | 4 | * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. |
@@ -130,7 +130,7 @@ | |||
130 | static const SSL_METHOD *dtls1_get_client_method(int ver); | 130 | static const SSL_METHOD *dtls1_get_client_method(int ver); |
131 | static int dtls1_get_hello_verify(SSL *s); | 131 | static int dtls1_get_hello_verify(SSL *s); |
132 | 132 | ||
133 | const SSL_METHOD DTLSv1_client_method_data = { | 133 | static const SSL_METHOD DTLSv1_client_method_data = { |
134 | .version = DTLS1_VERSION, | 134 | .version = DTLS1_VERSION, |
135 | .ssl_new = dtls1_new, | 135 | .ssl_new = dtls1_new, |
136 | .ssl_clear = dtls1_clear, | 136 | .ssl_clear = dtls1_clear, |