diff options
Diffstat (limited to 'mullvad-cli/src/cmds')
| -rw-r--r-- | mullvad-cli/src/cmds/status.rs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/mullvad-cli/src/cmds/status.rs b/mullvad-cli/src/cmds/status.rs index 10834b60b3..ffa834134e 100644 --- a/mullvad-cli/src/cmds/status.rs +++ b/mullvad-cli/src/cmds/status.rs @@ -120,8 +120,11 @@ fn print_blocked_reason(reason: &ErrorStateCause) { println!("Blocked: {}", AuthFailed::from(auth_failure_str)); } #[cfg(target_os = "linux")] - ErrorStateCause::SetFirewallPolicyError => { - println!("Blocked: {}", ErrorStateCause::SetFirewallPolicyError); + ErrorStateCause::SetFirewallPolicyError(error) => { + println!( + "Blocked: {}", + ErrorStateCause::SetFirewallPolicyError(error.clone()) + ); println!("Your kernel might be terribly out of date or missing nftables"); } other => println!("Blocked: {}", other), |
