Merge pull request #758 from bvinc/want_read_typo

Fixed a typo in an error message, WANT_WRITE -> WANT_READ
This commit is contained in:
Steven Fackler 2017-10-17 20:02:11 -07:00 committed by GitHub
commit 9b9a59a760
1 changed files with 1 additions and 1 deletions

View File

@ -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",
)
}
};