aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorNils Larsch <nils@openssl.org>2005-11-02 22:19:32 +0000
committerNils Larsch <nils@openssl.org>2005-11-02 22:19:32 +0000
commit29afd31dd19d1986dfc27e48a8bb0904827d9c77 (patch)
tree04e141b933728c3c297e46689e3d3d62486e0914 /doc
parentd86b0f1f5f65ce22e7ed48261270827b63a7ab21 (diff)
downloadopenssl-29afd31dd19d1986dfc27e48a8bb0904827d9c77.tar.gz
fix typo, pointed out by Patrick Guio
Diffstat (limited to 'doc')
-rw-r--r--doc/crypto/BIO_f_base64.pod2
1 files changed, 1 insertions, 1 deletions
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);