diff options
| author | Janito Vaqueiro Ferreira Filho <janito@mullvad.net> | 2019-09-29 22:55:25 +0000 |
|---|---|---|
| committer | Janito Vaqueiro Ferreira Filho <janito@mullvad.net> | 2019-09-30 11:17:11 +0000 |
| commit | 008fe4e41dcb12e340102c28aa8ad5a870b7457e (patch) | |
| tree | 8102e80b00a7f78e4410811392ca088b90bbc3f5 /talpid-core/src | |
| parent | b49a7d7f0457bea5840d5fad0ed611c8d05d6576 (diff) | |
| download | mullvadvpn-008fe4e41dcb12e340102c28aa8ad5a870b7457e.tar.xz mullvadvpn-008fe4e41dcb12e340102c28aa8ad5a870b7457e.zip | |
Reword duplication error message
Diffstat (limited to 'talpid-core/src')
| -rw-r--r-- | talpid-core/src/tunnel/wireguard/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/talpid-core/src/tunnel/wireguard/mod.rs b/talpid-core/src/tunnel/wireguard/mod.rs index 861134d2ef..024bab2a91 100644 --- a/talpid-core/src/tunnel/wireguard/mod.rs +++ b/talpid-core/src/tunnel/wireguard/mod.rs @@ -60,9 +60,9 @@ pub enum Error { #[error(display = "Failed to configure Wireguard sockets to bypass the tunnel")] BypassError(#[error(cause)] BoxedError), - /// Failed to duplicate file descriptors for logging on wireguard-go + /// Failed to duplicate tunnel file descriptor for wireguard-go #[cfg(any(target_os = "linux", target_os = "macos", target_os = "android"))] - #[error(display = "Failed to configure Wireguard sockets to bypass the tunnel")] + #[error(display = "Failed to duplicate tunnel file descriptor for wireguard-go")] FdDuplicationError(#[error(cause)] nix::Error), /// Pinging timed out. |
