]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Fix some typos
authorNeil Horman <nhorman@openssl.org>
Wed, 22 Jan 2025 12:38:51 +0000 (07:38 -0500)
committerNeil Horman <nhorman@openssl.org>
Mon, 17 Feb 2025 16:27:33 +0000 (11:27 -0500)
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Saša Nedvědický <sashan@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/26361)

doc/man3/SSL_CTX_set_new_pending_conn_cb.pod
doc/man3/SSL_new_listener.pod

index 2a99f00f840442b0821abc3c18c12709f7fdc70d..eb62efac3b5f5baf6678e9eb911844ac63b9cace 100644 (file)
@@ -49,9 +49,9 @@ QUIC connections may begin processing prior to when an application calls
 SSL_accept_connection() on them.  As such, it may occur that callbacks are
 delivered to appliations' registered TLS callbacks prior to those SSL objects
 being returned in SSL_accept_connection().  Applications should expect this
-possibilty
+possibility
 
-In Particular no references should be held on SSL objects passed to callbacks
+In particular no references should be held on SSL objects passed to callbacks
 for QUIC connections until such time as they are returned through a call to
 SSL_accept_connection.
 
index 5355749a0f3d6c8e36213e61f742181949f79ccc..3a500c46dcd6d1f2f3d7fa9692e4da8b7ed3a4ff 100644 (file)
@@ -220,7 +220,7 @@ SSL_get0_listener() behaves somewhat differently in SSL callbacks for QUIC
 connections.  As QUIC connections begin TLS handshake operations prior to them
 being accepted via SSL_accept_connection(), an application may receive callbacks
 for such pending connection prior to acceptance via SSL_accept_connection().  As
-listner association takes place during the accept process, prior to being
+listener association takes place during the accept process, prior to being
 returned from SSL_accept_connection(), calls to SSL_get0_listener() made from
 such SSL callbacks will return NULL.  This can be used as an indicator within
 the callback that the referenced SSL object has not yet been accepted.