summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorLinus Färnstrand <linus@mullvad.net>2017-07-06 14:43:30 +0200
committerLinus Färnstrand <linus@mullvad.net>2017-07-06 22:37:01 +0200
commit76adca885018a6f246ed379e880c9bd150edab1a (patch)
treea8c6026ad59bcb4aede2226ee62ff838fd9ef0c0
parente068a355ea24d8c779fcf983cdb2b49b5f566744 (diff)
downloadmullvadvpn-76adca885018a6f246ed379e880c9bd150edab1a.tar.xz
mullvadvpn-76adca885018a6f246ed379e880c9bd150edab1a.zip
Map result in openvpn plugin to match new type
-rw-r--r--talpid_openvpn_plugin/src/processing.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/talpid_openvpn_plugin/src/processing.rs b/talpid_openvpn_plugin/src/processing.rs
index dd6967135e..8b1591f63d 100644
--- a/talpid_openvpn_plugin/src/processing.rs
+++ b/talpid_openvpn_plugin/src/processing.rs
@@ -30,6 +30,7 @@ impl EventProcessor {
trace!("Processing \"{:?}\" event", event);
self.ipc_client
.call("openvpn_event", &(event, env))
+ .map(|_| ())
.chain_err(|| ErrorKind::IpcSendingError)
}
}