aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Fackler <[email protected]>2017-10-17 20:02:11 -0700
committerGitHub <[email protected]>2017-10-17 20:02:11 -0700
commit9b9a59a760b63502ad66f548d63881704d032828 (patch)
treef579b5c1e81d0935bd030db7686fe5887e801294
parentRelease v0.9.20 (diff)
parentFixed a typo in an error message, WANT_WRITE -> WANT_READ (diff)
downloadrust-openssl-9b9a59a760b63502ad66f548d63881704d032828.tar.xz
rust-openssl-9b9a59a760b63502ad66f548d63881704d032828.zip
Merge pull request #758 from bvinc/want_read_typo
Fixed a typo in an error message, WANT_WRITE -> WANT_READ
-rw-r--r--openssl/src/ssl/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/openssl/src/ssl/mod.rs b/openssl/src/ssl/mod.rs
index 01b49cb8..5a924a64 100644
--- a/openssl/src/ssl/mod.rs
+++ b/openssl/src/ssl/mod.rs
@@ -1805,7 +1805,7 @@ impl<S> SslStream<S> {
None => {
io::Error::new(
io::ErrorKind::Other,
- "BUG: got an SSL_ERROR_WANT_WRITE with no error in the BIO",
+ "BUG: got an SSL_ERROR_WANT_READ with no error in the BIO",
)
}
};