diff options
Diffstat (limited to 'openssl/ssl/t1_meth.c')
-rw-r--r-- | openssl/ssl/t1_meth.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openssl/ssl/t1_meth.c b/openssl/ssl/t1_meth.c index f5d8df634..6ce7c0bbf 100644 --- a/openssl/ssl/t1_meth.c +++ b/openssl/ssl/t1_meth.c @@ -60,8 +60,8 @@ #include <openssl/objects.h> #include "ssl_locl.h" -static SSL_METHOD *tls1_get_method(int ver); -static SSL_METHOD *tls1_get_method(int ver) +static const SSL_METHOD *tls1_get_method(int ver); +static const SSL_METHOD *tls1_get_method(int ver) { if (ver == TLS1_VERSION) return(TLSv1_method()); |