X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=doc%2Fman3%2FBIO_f_base64.pod;h=6ac98e953e0d6331be9f6509f01400bb11d4bdb7;hb=47ec2367ebf6082abb103e66e609feb5c128d358;hp=19df1dd638144db59387bd8bc2637fa3a8fa2d96;hpb=99d63d4662e16afbeff49f29b48f1c87d5558ed0;p=oweals%2Fopenssl.git diff --git a/doc/man3/BIO_f_base64.pod b/doc/man3/BIO_f_base64.pod index 19df1dd638..6ac98e953e 100644 --- a/doc/man3/BIO_f_base64.pod +++ b/doc/man3/BIO_f_base64.pod @@ -4,10 +4,10 @@ BIO_f_base64 - base64 BIO filter -=for comment multiple includes - =head1 SYNOPSIS +=for comment multiple includes + #include #include @@ -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); @@ -83,7 +83,7 @@ to reliably determine EOF (for example a MIME boundary). Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved. -Licensed under the OpenSSL license (the "License"). You may not use +Licensed under the Apache License 2.0 (the "License"). You may not use this file except in compliance with the License. You can obtain a copy in the file LICENSE in the source distribution or at L.