diff options
| author | Janito Vaqueiro Ferreira Filho <janito@mullvad.net> | 2019-07-24 19:30:56 +0000 |
|---|---|---|
| committer | Janito Vaqueiro Ferreira Filho <janito@mullvad.net> | 2019-07-29 17:47:42 +0000 |
| commit | 5d7795a6e27d58b110ea2acf9524501f5895cacf (patch) | |
| tree | 11aba8e37e59b2a2810d578cb6c93449c2b4706f /talpid-core/src | |
| parent | ec93779f4bd99a9b3cace987bd57c4856de9bd03 (diff) | |
| download | mullvadvpn-5d7795a6e27d58b110ea2acf9524501f5895cacf.tar.xz mullvadvpn-5d7795a6e27d58b110ea2acf9524501f5895cacf.zip | |
Fix typo in Wireguard error variant name
Diffstat (limited to 'talpid-core/src')
| -rw-r--r-- | talpid-core/src/tunnel/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/talpid-core/src/tunnel/mod.rs b/talpid-core/src/tunnel/mod.rs index a8c601b724..9014ee16ab 100644 --- a/talpid-core/src/tunnel/mod.rs +++ b/talpid-core/src/tunnel/mod.rs @@ -57,7 +57,7 @@ pub enum Error { /// There was an error listening for events from the Wireguard tunnel #[cfg(any(target_os = "android", target_os = "linux", target_os = "macos"))] #[error(display = "Failed while listening for events from the Wireguard tunnel")] - WirguardTunnelMonitoringError(#[error(cause)] wireguard::Error), + WireguardTunnelMonitoringError(#[error(cause)] wireguard::Error), } |
