Skip to content

Commit

Permalink
fix bad grammar
Browse files Browse the repository at this point in the history
  • Loading branch information
karencfv committed Jan 9, 2024
1 parent 8fc578c commit 8b829b0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion illumos-utils/src/route.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ impl Route {
})?;
match out.status.code() {
Some(0) => (),
// If the entry is not found in the table, the exit status of the command is be 3 (ESRCH)
// If the entry is not found in the table,
// the exit status of the command will be 3 (ESRCH).
// When that is the case, we'll add the route.
Some(3) => {
let mut cmd = std::process::Command::new(PFEXEC);
Expand Down

0 comments on commit 8b829b0

Please sign in to comment.