diff options
| author | Andy Gauge <[email protected]> | 2017-10-24 16:44:05 -0700 |
|---|---|---|
| committer | Andy Gauge <[email protected]> | 2017-10-24 16:44:05 -0700 |
| commit | 05ad00532c5aa08362edc929477eccbf98c16b86 (patch) | |
| tree | f579b5c1e81d0935bd030db7686fe5887e801294 /openssl/src/ssl | |
| parent | Merge branch 'master' of https://github.com/sfackler/rust-openssl (diff) | |
| parent | Merge pull request #758 from bvinc/want_read_typo (diff) | |
| download | rust-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.rs | 2 |
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", ) } }; |