diff options
author | beck <> | 2014-05-29 18:27:52 +0000 |
---|---|---|
committer | beck <> | 2014-05-29 18:27:52 +0000 |
commit | 4327b50dba2fee1f5f80fb82c9e8af6c4e5c1f66 (patch) | |
tree | ca968a1e03b93576c57aab8158bdc988383fd13a /src/lib/libcrypto/bio/bio_cb.c | |
parent | 4b16b4eb75628208ef991b55d5625a36adc0d6fd (diff) | |
download | openbsd-4327b50dba2fee1f5f80fb82c9e8af6c4e5c1f66.tar.gz openbsd-4327b50dba2fee1f5f80fb82c9e8af6c4e5c1f66.tar.bz2 openbsd-4327b50dba2fee1f5f80fb82c9e8af6c4e5c1f66.zip |
Any sane platform has stdio. Stop pretending we will ever use a platform
that does not.
"fire bomb" tedu@
Diffstat (limited to 'src/lib/libcrypto/bio/bio_cb.c')
-rw-r--r-- | src/lib/libcrypto/bio/bio_cb.c | 2 |
1 files changed, 0 insertions, 2 deletions
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, | |||
139 | b = (BIO *)bio->cb_arg; | 139 | b = (BIO *)bio->cb_arg; |
140 | if (b != NULL) | 140 | if (b != NULL) |
141 | BIO_write(b, buf, strlen(buf)); | 141 | BIO_write(b, buf, strlen(buf)); |
142 | #if !defined(OPENSSL_NO_STDIO) | ||
143 | else | 142 | else |
144 | fputs(buf, stderr); | 143 | fputs(buf, stderr); |
145 | #endif | ||
146 | return (r); | 144 | return (r); |
147 | } | 145 | } |