summaryrefslogtreecommitdiff
path: root/crypto/bio/bss_fd.c
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2005-11-03 15:31:28 +0000
committerAndy Polyakov <appro@openssl.org>2005-11-03 15:31:28 +0000
commiteff7cb41d1bbcef65b34d3f75307a1b4ad11c563 (patch)
treef6e3098764e9e165666385f62888eaeadcb4cf07 /crypto/bio/bss_fd.c
parent7a6f825f0f7a7a4c6fe63c766bf6a16bd6be05db (diff)
downloadopenssl-new-eff7cb41d1bbcef65b34d3f75307a1b4ad11c563.tar.gz
Disable BIO_s_fd on CE and disable fd:N as password passing option on
all _WIN32 [see commentary for clarification].
Diffstat (limited to 'crypto/bio/bss_fd.c')
-rw-r--r--crypto/bio/bss_fd.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/crypto/bio/bss_fd.c b/crypto/bio/bss_fd.c
index 4c229bf641..5786ed495b 100644
--- a/crypto/bio/bss_fd.c
+++ b/crypto/bio/bss_fd.c
@@ -56,6 +56,8 @@
* [including the GNU Public Licence.]
*/
+#if !defined(_WIN32_WCE)
+
#include <stdio.h>
#include <errno.h>
#define USE_SOCKETS
@@ -292,3 +294,4 @@ int BIO_fd_non_fatal_error(int err)
}
return(0);
}
+#endif