diff options
author | Dr. Stephen Henson <steve@openssl.org> | 1999-01-31 18:30:18 +0100 |
---|---|---|
committer | Dr. Stephen Henson <steve@openssl.org> | 1999-01-31 18:30:18 +0100 |
commit | 9b3086fe382e7b0f53b8634d0e75f1a659ab2653 (patch) | |
tree | 462330501c21d687e5389fed2b76ab350db16ffa /ssl/t1_clnt.c | |
parent | Yet more pissing about to get PEM built at the right moment. (diff) | |
download | openssl-9b3086fe382e7b0f53b8634d0e75f1a659ab2653.tar.xz openssl-9b3086fe382e7b0f53b8634d0e75f1a659ab2653.zip |
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_clnt.c')
-rw-r--r-- | ssl/t1_clnt.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ssl/t1_clnt.c b/ssl/t1_clnt.c index 986d2436e2..1a179221e7 100644 --- a/ssl/t1_clnt.c +++ b/ssl/t1_clnt.c @@ -63,6 +63,12 @@ #include "evp.h" #include "ssl_locl.h" +#ifndef NOPROTO +static SSL_METHOD *tls1_get_client_method(int ver); +#else +static SSL_METHOD *tls1_get_client_method(); +#endif + static SSL_METHOD *tls1_get_client_method(ver) int ver; { |