From aaea3b40fba455156bf927746e5076d0de30a686 Mon Sep 17 00:00:00 2001 From: tommady Date: Wed, 4 Oct 2023 09:16:54 +0000 Subject: [PATCH] fix freebsd typo --- src/uu/cp/src/cp.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/uu/cp/src/cp.rs b/src/uu/cp/src/cp.rs index f8c5ef3ce..72431cc12 100644 --- a/src/uu/cp/src/cp.rs +++ b/src/uu/cp/src/cp.rs @@ -1753,14 +1753,14 @@ fn copy_file( target_os = "android", target_os = "macos", target_os = "macos-12", - target_os = "freebds", + target_os = "freebsd", )))] const MODE_RW_UGO: u32 = S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH; #[cfg(not(any( target_os = "android", target_os = "macos", target_os = "macos-12", - target_os = "freebds", + target_os = "freebsd", )))] const S_IRWXUGO: u32 = S_IRWXU | S_IRWXG | S_IRWXO; @@ -1768,7 +1768,7 @@ fn copy_file( target_os = "android", target_os = "macos", target_os = "macos-12", - target_os = "freebds", + target_os = "freebsd", ))] const MODE_RW_UGO: u32 = (S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH) as u32; @@ -1776,7 +1776,7 @@ fn copy_file( target_os = "android", target_os = "macos", target_os = "macos-12", - target_os = "freebds", + target_os = "freebsd", ))] const S_IRWXUGO: u32 = (S_IRWXU | S_IRWXG | S_IRWXO) as u32;