diff options
| author | Emīls <emils@mullvad.net> | 2018-06-25 15:26:50 +0100 |
|---|---|---|
| committer | Emīls <emils@mullvad.net> | 2018-06-25 15:37:22 +0100 |
| commit | 821ef9be03087cbda7ae24ea4ef79f4354167074 (patch) | |
| tree | 1831e617dabc84c582b5aae8b0f2f34aecdf4cc4 | |
| parent | 5be10c5fd708fe0933f1d8cced80bac7550c13b7 (diff) | |
| download | mullvadvpn-821ef9be03087cbda7ae24ea4ef79f4354167074.tar.xz mullvadvpn-821ef9be03087cbda7ae24ea4ef79f4354167074.zip | |
Fix imports for system_state.rs
| -rw-r--r-- | talpid-core/src/firewall/windows/system_state.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/talpid-core/src/firewall/windows/system_state.rs b/talpid-core/src/firewall/windows/system_state.rs index 8c310667bb..cdc36f4e36 100644 --- a/talpid-core/src/firewall/windows/system_state.rs +++ b/talpid-core/src/firewall/windows/system_state.rs @@ -1,8 +1,8 @@ //! A writer for a blob that would persistently store the system state. Useful //! for when the application of a secuirty policy proves to be persistent across //! reboots -use std::fs; -use std::io; +use std::fs::{self, File}; +use std::io::{self, Write}; use std::path::Path; /// This struct is responsible for saving a binary blob to disk. The binary blob is intended to |
