aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
-rw-r--r--src/main.rs2
3 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock
index dd9ce5a..98877ce 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -462,7 +462,7 @@ dependencies = [
[[package]]
name = "rsdsl_netlinkd"
-version = "0.7.0"
+version = "0.7.1"
dependencies = [
"bitfield",
"futures",
diff --git a/Cargo.toml b/Cargo.toml
index 2937635..8143579 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "rsdsl_netlinkd"
-version = "0.7.0"
+version = "0.7.1"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
diff --git a/src/main.rs b/src/main.rs
index 76d0810..65c463b 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -160,7 +160,7 @@ fn configure_wan() -> Result<()> {
);
}
- for radvd in System::default().processes_by_exact_name("/bin/rsdsl_radvd") {
+ for radvd in System::new_all().processes_by_exact_name("rsdsl_radvd") {
radvd.kill_with(Signal::User1);
}