summaryrefslogtreecommitdiff
path: root/ssl/t1_meth.c
diff options
context:
space:
mode:
authorsteve <steve>1999-01-31 17:30:05 +0000
committersteve <steve>1999-01-31 17:30:05 +0000
commit846a0eac75abf4f17add01b86f232b427a7bc849 (patch)
tree488a220d2205e1cbd6c2de1856e0e83b58b1daf6 /ssl/t1_meth.c
parent036b5eec16d4a496b45952aaad18289a70e9a47c (diff)
downloadopenssl-846a0eac75abf4f17add01b86f232b427a7bc849.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/t1_meth.c')
-rw-r--r--ssl/t1_meth.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/ssl/t1_meth.c b/ssl/t1_meth.c
index 512c2078e..d64b5f4e6 100644
--- a/ssl/t1_meth.c
+++ b/ssl/t1_meth.c
@@ -60,6 +60,12 @@
#include "objects.h"
#include "ssl_locl.h"
+#ifndef NOPROTO
+static SSL_METHOD *tls1_get_method(int ver);
+#else
+static SSL_METHOD *tls1_get_method();
+#endif
+
static SSL_METHOD *tls1_get_method(ver)
int ver;
{