aboutsummaryrefslogtreecommitdiffstats
path: root/ssl/s23_srvr.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>1999-01-31 17:30:18 +0000
committerDr. Stephen Henson <steve@openssl.org>1999-01-31 17:30:18 +0000
commit9b3086fe382e7b0f53b8634d0e75f1a659ab2653 (patch)
tree462330501c21d687e5389fed2b76ab350db16ffa /ssl/s23_srvr.c
parentd433f9014edac49202f34ba464534eafd4bf6701 (diff)
downloadopenssl-9b3086fe382e7b0f53b8634d0e75f1a659ab2653.tar.gz
Fix various stuff: that VC++ 5.0 chokes on:
1. Add *lots* of missing prototypes for static ssl functions. 2. VC++ doesn't understand the 'LL' suffix for 64 bits constants: change bn.org 3. Add a few missing prototypes in pem.org Fix mk1mf.pl so it outputs a Makefile that doesn't choke Win95. Fix mkdef.pl so it doesn't truncate longer names.
Diffstat (limited to 'ssl/s23_srvr.c')
-rw-r--r--ssl/s23_srvr.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/ssl/s23_srvr.c b/ssl/s23_srvr.c
index 888ffaca06..5dd9253f9f 100644
--- a/ssl/s23_srvr.c
+++ b/ssl/s23_srvr.c
@@ -66,8 +66,10 @@
#define BREAK break
#ifndef NOPROTO
+static SSL_METHOD *ssl23_get_server_method(int ver);
int ssl23_get_client_hello(SSL *s);
#else
+static SSL_METHOD *ssl23_get_server_method();
int ssl23_get_client_hello();
#endif