Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/os/shared.rs
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,10 @@ pub fn get_input(
eperm_message()
),
(true, false) => format!("\n\n{}", other_errs.join("\n")),
(true, true) => unreachable!("Found no errors in error handling code path."),
(true, true) => bail!(
"Failed to acquire a frame receiver on any interface: unknown error. "
"This may occur on bonding/team interfaces or with certain network configurations."
),
};
bail!(err_msg);
}
Expand Down