Skip to content

Commit

Permalink
chore: Fix clippy warning
Browse files Browse the repository at this point in the history
  • Loading branch information
alcroito committed Mar 26, 2023
1 parent 0237422 commit 7a33644
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion crates/dyndns/src/web/addresses.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ pub fn socket_addresses_from_host_and_port(hostname: &str, port: u16) -> Result<
let addrs = (hostname, port)
.to_socket_addrs()
.wrap_err("Failed to convert hostname:port to at least one listening address")?
.into_iter()
.filter(|addr| {
// Filter out ipv6 link local addresses. Not robust, but better method is unstable.
// Identify them by a non-zero scope id.
Expand Down

0 comments on commit 7a33644

Please sign in to comment.