Fix some SSL_export_keying_material() issues
[openssl.git] / doc / man3 / BIO_f_base64.pod
index 19df1dd638144db59387bd8bc2637fa3a8fa2d96..5097c2849ba1bfc008c569daaf154bf61c60cf3e 100644 (file)
@@ -4,10 +4,10 @@
 
 BIO_f_base64 - base64 BIO filter
 
-=for comment multiple includes
-
 =head1 SYNOPSIS
 
+=for comment multiple includes
+
  #include <openssl/bio.h>
  #include <openssl/evp.h>
 
@@ -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);