aboutsummaryrefslogtreecommitdiffstats
path: root/doc/ssl
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2000-11-17 10:25:46 +0000
committerBodo Möller <bodo@openssl.org>2000-11-17 10:25:46 +0000
commitb1d6e3f551ce7e081ed3e30d525253042ebb10a4 (patch)
tree9c3f314641e56d9cd910ce554a540a9f6a5c8833 /doc/ssl
parentdb70a3fd6eeb757b39aa565ed6e1cb569a831d2f (diff)
downloadopenssl-b1d6e3f551ce7e081ed3e30d525253042ebb10a4.tar.gz
Documentation on using the SSL library with non-blocking I/O.
Diffstat (limited to 'doc/ssl')
-rw-r--r--doc/ssl/SSL_get_error.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/ssl/SSL_get_error.pod b/doc/ssl/SSL_get_error.pod
index 747b99741b..bd6872f61f 100644
--- a/doc/ssl/SSL_get_error.pod
+++ b/doc/ssl/SSL_get_error.pod
@@ -65,7 +65,7 @@ TLS/SSL I/O function should be retried.
Caveat: Any TLS/SSL I/O function can lead to either of
B<SSL_ERROR_WANT_READ> and B<SSL_ERROR_WANT_WRITE>. In particular,
SSL_read() may want to write data and SSL_write() may want to read
-data. This is because TLS/SSL handshakes may occur at any time
+data. This is mainly because TLS/SSL handshakes may occur at any time
during the protocol (initiated by either the client or the server);
SSL_read() and SSL_write() will handle any pending handshakes.