From e79909cf30efce3949f375df3aef096d334eb6fe Mon Sep 17 00:00:00 2001 From: beck <> Date: Thu, 29 May 2014 18:27:52 +0000 Subject: Any sane platform has stdio. Stop pretending we will ever use a platform that does not. "fire bomb" tedu@ --- src/lib/libcrypto/bio/bio_cb.c | 2 -- src/lib/libcrypto/bio/bss_file.c | 2 -- 2 files changed, 4 deletions(-) (limited to 'src/lib/libcrypto/bio') diff --git a/src/lib/libcrypto/bio/bio_cb.c b/src/lib/libcrypto/bio/bio_cb.c index 133d2b77dc..067a25aba3 100644 --- a/src/lib/libcrypto/bio/bio_cb.c +++ b/src/lib/libcrypto/bio/bio_cb.c @@ -139,9 +139,7 @@ BIO_debug_callback(BIO *bio, int cmd, const char *argp, int argi, long argl, b = (BIO *)bio->cb_arg; if (b != NULL) BIO_write(b, buf, strlen(buf)); -#if !defined(OPENSSL_NO_STDIO) else fputs(buf, stderr); -#endif return (r); } diff --git a/src/lib/libcrypto/bio/bss_file.c b/src/lib/libcrypto/bio/bss_file.c index 6f81a45a47..6ac7bdd020 100644 --- a/src/lib/libcrypto/bio/bss_file.c +++ b/src/lib/libcrypto/bio/bss_file.c @@ -89,7 +89,6 @@ #include #include -#if !defined(OPENSSL_NO_STDIO) static int file_write(BIO *h, const char *buf, int num); static int file_read(BIO *h, char *buf, int size); @@ -324,6 +323,5 @@ file_puts(BIO *bp, const char *str) return (ret); } -#endif /* OPENSSL_NO_STDIO */ #endif /* HEADER_BSS_FILE_C */ -- cgit v1.2.3-55-g6feb