aboutsummaryrefslogtreecommitdiff
path: root/crypto/bio/bss_log.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>1999-03-03 02:01:26 +0000
committerDr. Stephen Henson <steve@openssl.org>1999-03-03 02:01:26 +0000
commit06c684912465497b3feff3e2327680b46b552be7 (patch)
tree39f4cc5a69ce3dc2f25c8e64c70014b83f968702 /crypto/bio/bss_log.c
parent726bae3f0fabbe9508f494eed83e96a7039b52e8 (diff)
downloadopenssl-06c684912465497b3feff3e2327680b46b552be7.zip
openssl-06c684912465497b3feff3e2327680b46b552be7.tar.gz
openssl-06c684912465497b3feff3e2327680b46b552be7.tar.bz2
Fix the Win32 compile environment and add various changes so it will now compile
under Win32 (9X and NT) again. Note: some signed/unsigned changes recently checked in were killing the Win32 compile.
Diffstat (limited to 'crypto/bio/bss_log.c')
-rw-r--r--crypto/bio/bss_log.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/crypto/bio/bss_log.c b/crypto/bio/bss_log.c
index cb27798..4ec76fa 100644
--- a/crypto/bio/bss_log.c
+++ b/crypto/bio/bss_log.c
@@ -62,6 +62,8 @@
*/
+#if !defined(WIN32) || defined(WINNT)
+
#include <stdio.h>
#include <errno.h>
@@ -242,3 +244,4 @@ static int xcloselog(BIO* bp)
return(1);
}
+#endif