aboutsummaryrefslogtreecommitdiff
path: root/openssl/src/ssl
diff options
context:
space:
mode:
authorAndy Gauge <[email protected]>2017-10-24 16:44:05 -0700
committerAndy Gauge <[email protected]>2017-10-24 16:44:05 -0700
commit05ad00532c5aa08362edc929477eccbf98c16b86 (patch)
treef579b5c1e81d0935bd030db7686fe5887e801294 /openssl/src/ssl
parentMerge branch 'master' of https://github.com/sfackler/rust-openssl (diff)
parentMerge pull request #758 from bvinc/want_read_typo (diff)
downloadrust-openssl-05ad00532c5aa08362edc929477eccbf98c16b86.tar.xz
rust-openssl-05ad00532c5aa08362edc929477eccbf98c16b86.zip
Merge branch 'master' of https://github.com/sfackler/rust-openssl
Diffstat (limited to 'openssl/src/ssl')
-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",
)
}
};