From: Nils Larsch Date: Wed, 2 Nov 2005 22:19:32 +0000 (+0000) Subject: fix typo, pointed out by Patrick Guio X-Git-Tag: OpenSSL_0_9_8k^2~1735 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=29afd31dd19d1986dfc27e48a8bb0904827d9c77;ds=sidebyside 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);