The branch master has been updated
via b0be101326f369f0dd547556d2f3eb3ef5ed0e33 (commit)
from 317acac5cc0a2cb31bc4b91353c2b752a3989d8a (commit)
- Log -----------------------------------------------------------------
commit b0be101326f369f0dd547556d2f3eb3ef5ed0e33
Author: Matt Caswell <[email protected]>
Date: Mon Dec 6 11:37:26 2021 +0000
Fix documentation for tlsext_ticket_key
The tlsext_ticket_key functions are documented as returning 0 on success.
In fact they return 1 on success.
Reviewed-by: Tomas Mraz <[email protected]>
Reviewed-by: Paul Dale <[email protected]>
(Merged from https://github.com/openssl/openssl/pull/17210)
-----------------------------------------------------------------------
Summary of changes:
doc/man3/SSL_CTX_set_tlsext_ticket_key_cb.pod | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/doc/man3/SSL_CTX_set_tlsext_ticket_key_cb.pod
b/doc/man3/SSL_CTX_set_tlsext_ticket_key_cb.pod
index 9e9d729c25..5d178bb8e4 100644
--- a/doc/man3/SSL_CTX_set_tlsext_ticket_key_cb.pod
+++ b/doc/man3/SSL_CTX_set_tlsext_ticket_key_cb.pod
@@ -145,7 +145,7 @@ enable an attacker to obtain the session keys.
=head1 RETURN VALUES
-returns 0 to indicate the callback function was set.
+Returns 1 to indicate the callback function was set and 0 otherwise.
=head1 EXAMPLES