Commit 9b9a59a7 authored by Steven Fackler's avatar Steven Fackler Committed by GitHub
Browse files

Merge pull request #758 from bvinc/want_read_typo

Fixed a typo in an error message, WANT_WRITE -> WANT_READ
parents 09f2a3e9 d5299a8d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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",
                        )
                    }
                };