diff options
| author | Emīls <emils@mullvad.net> | 2020-02-20 23:20:06 +0000 |
|---|---|---|
| committer | Emīls <emils@mullvad.net> | 2020-02-21 11:54:52 +0000 |
| commit | 144874b81cd987b1ca2b336e8350fbcb145bb6d4 (patch) | |
| tree | cbf05927a7b68b3669ea4b97eb1fec862429076f | |
| parent | 841eb1f16753f1e26a177fed8702dd62daceaddd (diff) | |
| download | mullvadvpn-144874b81cd987b1ca2b336e8350fbcb145bb6d4.tar.xz mullvadvpn-144874b81cd987b1ca2b336e8350fbcb145bb6d4.zip | |
Fix visibility in wireguard.rs
| -rw-r--r-- | mullvad-daemon/src/wireguard.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mullvad-daemon/src/wireguard.rs b/mullvad-daemon/src/wireguard.rs index 7b6fdac006..09c5f01461 100644 --- a/mullvad-daemon/src/wireguard.rs +++ b/mullvad-daemon/src/wireguard.rs @@ -123,7 +123,7 @@ impl KeyManager { } /// Run a future on the given tokio remote - pub fn run_future_sync<T: Send + 'static, E: Send + 'static>( + fn run_future_sync<T: Send + 'static, E: Send + 'static>( &mut self, fut: impl Future<Item = T, Error = E> + Send + 'static, ) -> std::result::Result<T, E> { |
