Compare commits

..

No commits in common. "1789c8f62c9615e25019b2f92bb4217c10207359" and "85190447bee188c8f64b995735b8ed4c358de5bf" have entirely different histories.

3 changed files with 2 additions and 3 deletions

2
Cargo.lock generated
View File

@ -2244,7 +2244,7 @@ dependencies = [
[[package]] [[package]]
name = "punchnet" name = "punchnet"
version = "1.0.5" version = "1.0.4"
dependencies = [ dependencies = [
"ahash", "ahash",
"arc-swap", "arc-swap",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "punchnet" name = "punchnet"
version = "1.0.5" version = "1.0.4"
edition = "2021" edition = "2021"
[dependencies] [dependencies]

View File

@ -789,7 +789,6 @@ pub fn del_route(net: &Ipv4Net, gw: &Ipv4Addr) -> Result<()> {
let res = Command::new("route") let res = Command::new("route")
.arg("delete") .arg("delete")
.arg(network) .arg(network)
.arg("MASK")
.arg(mask) .arg(mask)
.arg(gw.to_string()) .arg(gw.to_string())
.output()?; .output()?;