diff options
| -rw-r--r-- | CHANGELOG.md | 1 | ||||
| -rw-r--r-- | talpid-openvpn/src/process/openvpn.rs | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 91e2b81ee2..9b90861814 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -44,6 +44,7 @@ Line wrap the file at 100 chars. Th hostname as sole argument, inheriting the behavior of `mullvad relay set hostname`. This is in addition to accepting a geographical location as basis for filtering relays. +- Silence OpenVPN "replay attack" warnings. #### Windows - In the CLI, add a unified `mullvad split-tunnel get` command to replace the old commands diff --git a/talpid-openvpn/src/process/openvpn.rs b/talpid-openvpn/src/process/openvpn.rs index bdce415756..1ca2cb3958 100644 --- a/talpid-openvpn/src/process/openvpn.rs +++ b/talpid-openvpn/src/process/openvpn.rs @@ -15,6 +15,7 @@ static BASE_ARGUMENTS: &[&[&str]] = &[ &["--client"], &["--tls-client"], &["--nobind"], + &["--mute-replay-warnings"], #[cfg(not(windows))] &["--dev", "tun"], #[cfg(windows)] |
