diff options
Diffstat (limited to 'mullvad-cli/src')
| -rw-r--r-- | mullvad-cli/src/cmds/status.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mullvad-cli/src/cmds/status.rs b/mullvad-cli/src/cmds/status.rs index 0f82591eea..8642c581ce 100644 --- a/mullvad-cli/src/cmds/status.rs +++ b/mullvad-cli/src/cmds/status.rs @@ -87,6 +87,11 @@ fn print_blocked_reason(reason: &BlockReason) { .unwrap_or("Account authentication failed"); println!("Blocked: {}", AuthFailed::from(auth_failure_str)); } + #[cfg(target_os = "linux")] + BlockReason::SetFirewallPolicyError => { + println!("Blocked: {}", BlockReason::SetFirewallPolicyError); + println!("Your kernel might be terribly out of date or missing nftables"); + } other => println!("Blocked: {}", other), } } |
