From: Nils Larsch Date: Wed, 2 Nov 2005 22:19:23 +0000 (+0000) Subject: fix typo, pointed out by Patrick Guio X-Git-Tag: OpenSSL_0_9_8b~95 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=b3bdb474a9514b094aad304a63e6fa9a7cb2a475;hp=d796e6acb7de9b40e5458d934267fe4cd1662c51 fix typo, pointed out by Patrick Guio --- diff --git a/doc/crypto/BIO_f_base64.pod b/doc/crypto/BIO_f_base64.pod index 929557d22f..438af3b6b6 100644 --- a/doc/crypto/BIO_f_base64.pod +++ b/doc/crypto/BIO_f_base64.pod @@ -63,7 +63,7 @@ data to standard output: bio = BIO_new_fp(stdin, BIO_NOCLOSE); bio_out = BIO_new_fp(stdout, BIO_NOCLOSE); bio = BIO_push(b64, bio); - while((inlen = BIO_read(bio, inbuf, 512) > 0) + while((inlen = BIO_read(bio, inbuf, 512)) > 0) BIO_write(bio_out, inbuf, inlen); BIO_free_all(bio);