aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorFdaSilvaYY <fdasilvayy@gmail.com>2017-08-12 20:02:24 +0200
committerFdaSilvaYY <fdasilvayy@gmail.com>2017-08-12 20:07:17 +0200
commitbdcacd93b14ed7381a922b41d74c481224ef9fa1 (patch)
tree069de6e43f984ad1847393d12ee422dcc843e5db /doc
parent3c1a60e56f090f0478ab0405766003b680982745 (diff)
downloadopenssl-bdcacd93b14ed7381a922b41d74c481224ef9fa1.tar.gz
Fix some typo and comments
[skip ci] Reviewed-by: Andy Polyakov <appro@openssl.org> Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/4149)
Diffstat (limited to 'doc')
-rw-r--r--doc/man3/SSL_alloc_buffers.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/man3/SSL_alloc_buffers.pod b/doc/man3/SSL_alloc_buffers.pod
index de33efb937..94bd05840c 100644
--- a/doc/man3/SSL_alloc_buffers.pod
+++ b/doc/man3/SSL_alloc_buffers.pod
@@ -20,7 +20,7 @@ The B<SSL_MODE_RELEASE_BUFFERS> mode releases read or write buffers whenever
the buffers have been drained. These functions allow applications to manually
control when buffers are freed and allocated.
-After freeing the buffers, the buffers are automatically reallocted upon a
+After freeing the buffers, the buffers are automatically reallocated upon a
new read or write. The SSL_alloc_buffers() does not need to be called, but
can be used to make sure the buffers are pre-allocated. This can be used to
avoid allocation during data processing or with CRYPTO_set_mem_functions()
@@ -44,7 +44,7 @@ The SSL_free_buffers() function returns 1 if the buffers have been freed. This
value is also returned if the buffers had been freed before calling
SSL_free_buffers().
The SSL_alloc_buffers() function returns 1 if the buffers have been allocated.
-This valus is also returned if the buffers had been allocated before calling
+This value is also returned if the buffers had been allocated before calling
SSL_alloc_buffers().
=back