diff options
author | Daniel Bevenius <daniel.bevenius@gmail.com> | 2017-12-12 16:56:50 +0100 |
---|---|---|
committer | Rich Salz <rsalz@openssl.org> | 2017-12-12 18:31:12 +0100 |
commit | 631c37be3239aab846c14643d03cf127d8778197 (patch) | |
tree | 99abffefd16e0d9ad36c64b7c8556369bcce79ca /doc/man7/bio.pod | |
parent | crypto/bio/bss_dgram.c: annotate fallthrough (-Wimplicit-fallthrough) (diff) | |
download | openssl-631c37be3239aab846c14643d03cf127d8778197.tar.xz openssl-631c37be3239aab846c14643d03cf127d8778197.zip |
Fix minor typo in bio.pod
Reviewed-by: Ben Kaduk <kaduk@mit.edu>
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/4917)
Diffstat (limited to 'doc/man7/bio.pod')
-rw-r--r-- | doc/man7/bio.pod | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/man7/bio.pod b/doc/man7/bio.pod index d2786becd2..45ef2f7704 100644 --- a/doc/man7/bio.pod +++ b/doc/man7/bio.pod @@ -44,8 +44,8 @@ and frequently a utility function exists to create and initialize such BIOs. If BIO_free() is called on a BIO chain it will only free one BIO resulting in a memory leak. -Calling BIO_free_all() a single BIO has the same effect as calling BIO_free() -on it other than the discarded return value. +Calling BIO_free_all() on a single BIO has the same effect as calling +BIO_free() on it other than the discarded return value. Normally the B<type> argument is supplied by a function which returns a pointer to a BIO_METHOD. There is a naming convention for such functions: |