about summary refs log tree commit diff
path: root/library/std/src/sys/unix/net.rs
diff options
context:
space:
mode:
authorMara Bos <m-ou.se@m-ou.se>2021-05-27 14:03:35 +0200
committerMara Bos <m-ou.se@m-ou.se>2021-06-15 14:22:49 +0200
commit0b37bb2bc25be8059e88a4139d9ab067d9600610 (patch)
tree94b924be8089b0c64707513a239c662e99739c04 /library/std/src/sys/unix/net.rs
parentcdbe2888979bb8797b05f0d58a6f6e60753983d2 (diff)
downloadrust-0b37bb2bc25be8059e88a4139d9ab067d9600610.tar.gz
rust-0b37bb2bc25be8059e88a4139d9ab067d9600610.zip
Redefine `ErrorKind::Other` and stop using it in std.
Diffstat (limited to 'library/std/src/sys/unix/net.rs')
-rw-r--r--library/std/src/sys/unix/net.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/std/src/sys/unix/net.rs b/library/std/src/sys/unix/net.rs
index e6b61062d15..9db670408c3 100644
--- a/library/std/src/sys/unix/net.rs
+++ b/library/std/src/sys/unix/net.rs
@@ -38,7 +38,7 @@ pub fn cvt_gai(err: c_int) -> io::Result<()> {
         str::from_utf8(CStr::from_ptr(libc::gai_strerror(err)).to_bytes()).unwrap().to_owned()
     };
     Err(io::Error::new(
-        io::ErrorKind::Other,
+        io::ErrorKind::Unknown,
         &format!("failed to lookup address information: {}", detail)[..],
     ))
 }
@@ -178,7 +178,7 @@ impl Socket {
                     if pollfd.revents & libc::POLLHUP != 0 {
                         let e = self.take_error()?.unwrap_or_else(|| {
                             io::Error::new_const(
-                                io::ErrorKind::Other,
+                                io::ErrorKind::Unknown,
                                 &"no error set after POLLHUP",
                             )
                         });