summaryrefslogtreecommitdiffstats
path: root/ssl/s3_meth.c
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>1999-04-19 21:31:43 +0000
committerUlf Möller <ulf@openssl.org>1999-04-19 21:31:43 +0000
commit6b691a5c85ddc4e407e32781841fee5c029506cd (patch)
tree436f1127406e1cacfe83dfcbfff824d89c47d834 /ssl/s3_meth.c
parent3edd7ed15de229230f74c79c3d71e7c9c674cf4f (diff)
Change functions to ANSI C.
Diffstat (limited to 'ssl/s3_meth.c')
-rw-r--r--ssl/s3_meth.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/ssl/s3_meth.c b/ssl/s3_meth.c
index 387b352370..d9cd9c2210 100644
--- a/ssl/s3_meth.c
+++ b/ssl/s3_meth.c
@@ -66,8 +66,7 @@ static SSL_METHOD *ssl3_get_method(int ver);
static SSL_METHOD *ssl3_get_method();
#endif
-static SSL_METHOD *ssl3_get_method(ver)
-int ver;
+static SSL_METHOD *ssl3_get_method(int ver)
{
if (ver == SSL3_VERSION)
return(SSLv3_method());
@@ -75,7 +74,7 @@ int ver;
return(NULL);
}
-SSL_METHOD *SSLv3_method()
+SSL_METHOD *SSLv3_method(void)
{
static int init=1;
static SSL_METHOD SSLv3_data;