summaryrefslogtreecommitdiffhomepage
path: root/src/process
diff options
context:
space:
mode:
authorLinus Färnstrand <linus@mullvad.net>2017-03-06 15:23:12 +0100
committerLinus Färnstrand <linus@mullvad.net>2017-03-06 15:23:12 +0100
commit379172f8b87aebc9f2e7c4327d6d3ef744f9dc93 (patch)
treee644230f3cb7e27d0a74624e21b3ca0537989be1 /src/process
parent1e62f77263526e3190d36f672b9df797225a4a2f (diff)
downloadmullvadvpn-379172f8b87aebc9f2e7c4327d6d3ef744f9dc93.tar.xz
mullvadvpn-379172f8b87aebc9f2e7c4327d6d3ef744f9dc93.zip
Rustfmt import fixes
Diffstat (limited to 'src/process')
-rw-r--r--src/process/openvpn.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/process/openvpn.rs b/src/process/openvpn.rs
index 52b16ad065..65f87064ff 100644
--- a/src/process/openvpn.rs
+++ b/src/process/openvpn.rs
@@ -1,3 +1,5 @@
+use super::monitor::ChildSpawner;
+
use clonablechild::{ClonableChild, ChildExt};
use net::{RemoteAddr, ToRemoteAddrs};
@@ -8,8 +10,6 @@ use std::io;
use std::path::{Path, PathBuf};
use std::process::{Command, Child, Stdio};
-use super::monitor::ChildSpawner;
-
/// An OpenVPN process builder, providing control over the different arguments that the OpenVPN
/// binary accepts.
#[derive(Clone)]