Fix some SSL_export_keying_material() issues
[openssl.git] / doc / man3 / BIO_f_base64.pod
index 1740dad57f25e4313e70875cf8ed50a5891c19e3..5097c2849ba1bfc008c569daaf154bf61c60cf3e 100644 (file)
@@ -65,8 +65,8 @@ data to standard output:
  bio = BIO_new_fp(stdin, BIO_NOCLOSE);
  bio_out = BIO_new_fp(stdout, BIO_NOCLOSE);
  BIO_push(b64, bio);
- while((inlen = BIO_read(b64, inbuf, 512)) > 0)
-        BIO_write(bio_out, inbuf, inlen);
+ while ((inlen = BIO_read(b64, inbuf, 512)) > 0)
+     BIO_write(bio_out, inbuf, inlen);
 
  BIO_flush(bio_out);
  BIO_free_all(b64);