Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
dlon committed Feb 13, 2025
1 parent d59146c commit c2c1ec2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion talpid-tunnel/src/tun_provider/unix.rs
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ impl TunnelDevice {
let ipv6 = ipv6.to_string();
let device = self.dev.get_ref().name();
Command::new("ifconfig")
.args([&device, "inet6", &ipv6, "alias"])
.args([device, "inet6", &ipv6, "alias"])
.output()
.map_err(Error::SetIpv6)?;
}
Expand Down

0 comments on commit c2c1ec2

Please sign in to comment.