summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorNils Larsch <nils@openssl.org>2005-11-02 22:19:23 +0000
committerNils Larsch <nils@openssl.org>2005-11-02 22:19:23 +0000
commitb3bdb474a9514b094aad304a63e6fa9a7cb2a475 (patch)
tree98c5104718f6ed076a0ea638dd6ff309f8d9ada2 /doc
parentd796e6acb7de9b40e5458d934267fe4cd1662c51 (diff)
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);