diff options
| author | Linus Färnstrand <linus@mullvad.net> | 2020-08-28 12:04:19 +0200 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2020-08-28 21:49:26 +0200 |
| commit | 7570c21a87678e69ddf8735c608a8ee56972af6d (patch) | |
| tree | 4e01663eb3674c78174cc9b534538b8d0369f289 | |
| parent | d2d32175fd1e8fbf04dd6d5d7ee03c7e419af23e (diff) | |
| download | mullvadvpn-7570c21a87678e69ddf8735c608a8ee56972af6d.tar.xz mullvadvpn-7570c21a87678e69ddf8735c608a8ee56972af6d.zip | |
Remove a use of wildcard imports in favor of importing used items
| -rw-r--r-- | mullvad-daemon/src/exception_logging/unix.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mullvad-daemon/src/exception_logging/unix.rs b/mullvad-daemon/src/exception_logging/unix.rs index 977d3857b1..47477d71c4 100644 --- a/mullvad-daemon/src/exception_logging/unix.rs +++ b/mullvad-daemon/src/exception_logging/unix.rs @@ -1,7 +1,7 @@ //! Installs signal handlers to catch critical program faults and logs them. use libc::{c_int, c_void, siginfo_t}; -use nix::sys::signal::*; +use nix::sys::signal::{sigaction, SaFlags, SigAction, SigHandler, SigSet, Signal}; use std::{convert::TryFrom, sync::Once}; |
