1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 11:37:44 +00:00

Fixed a warning on freebdsd:

warning: unused import: `std::os::unix::fs::PermissionsExt`
This commit is contained in:
Sylvestre Ledru 2021-09-12 23:14:34 +02:00
parent 238bcb9634
commit cc8522a2db

View file

@ -9,7 +9,7 @@ use std::os::unix::fs;
#[cfg(unix)]
use std::os::unix::fs::symlink as symlink_file;
#[cfg(unix)]
#[cfg(all(unix, not(target_os = "freebsd")))]
use std::os::unix::fs::PermissionsExt;
#[cfg(windows)]
use std::os::windows::fs::symlink_file;