diff options
author | 2003-06-21 01:38:55 +0000 | |
---|---|---|
committer | 2003-06-21 01:38:55 +0000 | |
commit | 0521f8a272534d2935e71081c96b71f051b4d28b (patch) | |
tree | 09da33ec41e40c638d33f156743d1a4b01c31034 /lib/libssl/src | |
parent | A few clarifications, and more third-person text. (diff) | |
download | wireguard-openbsd-0521f8a272534d2935e71081c96b71f051b4d28b.tar.xz wireguard-openbsd-0521f8a272534d2935e71081c96b71f051b4d28b.zip |
the the
Diffstat (limited to 'lib/libssl/src')
-rw-r--r-- | lib/libssl/src/doc/ssl/SSL_CIPHER_get_name.pod | 2 | ||||
-rw-r--r-- | lib/libssl/src/doc/ssl/SSL_CTX_set_verify.pod | 2 | ||||
-rw-r--r-- | lib/libssl/src/doc/ssl/SSL_SESSION_free.pod | 2 | ||||
-rw-r--r-- | lib/libssl/src/doc/ssl/SSL_free.pod | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/lib/libssl/src/doc/ssl/SSL_CIPHER_get_name.pod b/lib/libssl/src/doc/ssl/SSL_CIPHER_get_name.pod index 4b91c63ba0d..914eb7c9e3e 100644 --- a/lib/libssl/src/doc/ssl/SSL_CIPHER_get_name.pod +++ b/lib/libssl/src/doc/ssl/SSL_CIPHER_get_name.pod @@ -28,7 +28,7 @@ SSL_CIPHER_get_version() returns the protocol version for B<cipher>, currently SSL_CIPHER_description() returns a textual description of the cipher used into the buffer B<buf> of length B<len> provided. B<len> must be at least -128 bytes, otherwise a pointer to the the string "Buffer too small" is +128 bytes, otherwise a pointer to the string "Buffer too small" is returned. If B<buf> is NULL, a buffer of 128 bytes is allocated using OPENSSL_malloc(). If the allocation fails, a pointer to the string "OPENSSL_malloc Error" is returned. diff --git a/lib/libssl/src/doc/ssl/SSL_CTX_set_verify.pod b/lib/libssl/src/doc/ssl/SSL_CTX_set_verify.pod index d15b2a3a1a5..74f05301ecb 100644 --- a/lib/libssl/src/doc/ssl/SSL_CTX_set_verify.pod +++ b/lib/libssl/src/doc/ssl/SSL_CTX_set_verify.pod @@ -28,7 +28,7 @@ specifies the B<verify_callback> function to be used. If no callback function shall be specified, the NULL pointer can be used for B<verify_callback>. In this case last B<verify_callback> set specifically for this B<ssl> remains. If no special B<callback> was set before, the default callback for the underlying -B<ctx> is used, that was valid at the the time B<ssl> was created with +B<ctx> is used, that was valid at the time B<ssl> was created with L<SSL_new(3)|SSL_new(3)>. SSL_CTX_set_verify_depth() sets the maximum B<depth> for the certificate chain diff --git a/lib/libssl/src/doc/ssl/SSL_SESSION_free.pod b/lib/libssl/src/doc/ssl/SSL_SESSION_free.pod index 558de01df91..110ec73ab62 100644 --- a/lib/libssl/src/doc/ssl/SSL_SESSION_free.pod +++ b/lib/libssl/src/doc/ssl/SSL_SESSION_free.pod @@ -14,7 +14,7 @@ SSL_SESSION_free - free an allocated SSL_SESSION structure SSL_SESSION_free() decrements the reference count of B<session> and removes the B<SSL_SESSION> structure pointed to by B<session> and frees up the allocated -memory, if the the reference count has reached 0. +memory, if the reference count has reached 0. =head1 NOTES diff --git a/lib/libssl/src/doc/ssl/SSL_free.pod b/lib/libssl/src/doc/ssl/SSL_free.pod index 2d4f8b6168b..13c1abd9ecf 100644 --- a/lib/libssl/src/doc/ssl/SSL_free.pod +++ b/lib/libssl/src/doc/ssl/SSL_free.pod @@ -14,7 +14,7 @@ SSL_free - free an allocated SSL structure SSL_free() decrements the reference count of B<ssl>, and removes the SSL structure pointed to by B<ssl> and frees up the allocated memory if the -the reference count has reached 0. +reference count has reached 0. =head1 NOTES |