diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2015-05-05 16:35:15 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2015-05-07 09:30:00 -0700 |
| commit | 377b1adc36af65ed79be2b79a4e1caf240fc457a (patch) | |
| tree | b9d19181fcc7bc264a4e944031237b445db6c688 /src/libstd/net/mod.rs | |
| parent | 05d5fcaa5ba0c385e1dc97037c89fae437634fc3 (diff) | |
| download | rust-377b1adc36af65ed79be2b79a4e1caf240fc457a.tar.gz rust-377b1adc36af65ed79be2b79a4e1caf240fc457a.zip | |
std: Rename sys::foo2 modules to sys::foo
Now that `std::old_io` has been removed for quite some time the naming real estate here has opened up to allow these modules to move back to their proper names.
Diffstat (limited to 'src/libstd/net/mod.rs')
| -rw-r--r-- | src/libstd/net/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/net/mod.rs b/src/libstd/net/mod.rs index bf444ce671d..bff9774bcd0 100644 --- a/src/libstd/net/mod.rs +++ b/src/libstd/net/mod.rs @@ -15,7 +15,7 @@ use prelude::v1::*; use io::{self, Error, ErrorKind}; -use sys_common::net2 as net_imp; +use sys_common::net as net_imp; pub use self::ip::{IpAddr, Ipv4Addr, Ipv6Addr, Ipv6MulticastScope}; pub use self::addr::{SocketAddr, SocketAddrV4, SocketAddrV6, ToSocketAddrs}; |
