Skip to content

Commit

Permalink
Change anyhow import to fix FreeBSD (#806)
Browse files Browse the repository at this point in the history
* Change anyhow import to fix FreeBSD

* Oh im just going to change one line
  • Loading branch information
jabbate19 authored Dec 2, 2024
1 parent 3a96be6 commit 46fb336
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion implants/lib/eldritch/src/process/netstat_impl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use starlark::values::{dict::Dict, Heap};

#[cfg(target_os = "freebsd")]
pub fn netstat(_: &Heap) -> Result<Vec<Dict>> {
Err(anyhow!("Not implemented for FreeBSD"))
Err(anyhow::anyhow!("Not implemented for FreeBSD"))
}

#[cfg(not(target_os = "freebsd"))]
Expand Down

0 comments on commit 46fb336

Please sign in to comment.