summaryrefslogtreecommitdiff
path: root/lib/libcrypto/bio
diff options
context:
space:
mode:
authorJoel Sing <jsing@cvs.openbsd.org>2015-02-12 03:54:08 +0000
committerJoel Sing <jsing@cvs.openbsd.org>2015-02-12 03:54:08 +0000
commit3ff372d636801373cc76788414010fd6224bb039 (patch)
tree0ca3768dc1977f39cb13df68afb102284ef6a851 /lib/libcrypto/bio
parent0ae4a300ba5a7c8751de6513a2404dfe1995a555 (diff)
If you do not support POSIX I/O then you're not tall enough to ride...
ok tedu@
Diffstat (limited to 'lib/libcrypto/bio')
-rw-r--r--lib/libcrypto/bio/bss_fd.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/lib/libcrypto/bio/bss_fd.c b/lib/libcrypto/bio/bss_fd.c
index 71abb4744a0..b21dbd92ed9 100644
--- a/lib/libcrypto/bio/bss_fd.c
+++ b/lib/libcrypto/bio/bss_fd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: bss_fd.c,v 1.17 2014/07/11 08:44:47 jsing Exp $ */
+/* $OpenBSD: bss_fd.c,v 1.18 2015/02/12 03:54:07 jsing Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
@@ -63,12 +63,6 @@
#include <openssl/opensslconf.h>
-#if defined(OPENSSL_NO_POSIX_IO)
-/*
- * One can argue that one should implement dummy placeholder for
- * BIO_s_fd here...
- */
-#else
#include <openssl/bio.h>
static int fd_write(BIO *h, const char *buf, int num);
@@ -271,4 +265,3 @@ BIO_fd_non_fatal_error(int err)
}
return (0);
}
-#endif