From 2e34d94e179f27246d96f0a53842b9e70b67e242 Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Sun, 4 May 2025 22:50:16 +0200 Subject: [PATCH] selinux: upstream expects lower case --- src/uucore/src/lib/features/selinux.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/uucore/src/lib/features/selinux.rs b/src/uucore/src/lib/features/selinux.rs index 18261912c..02514e8c8 100644 --- a/src/uucore/src/lib/features/selinux.rs +++ b/src/uucore/src/lib/features/selinux.rs @@ -13,16 +13,16 @@ pub enum SeLinuxError { #[error("SELinux is not enabled on this system")] SELinuxNotEnabled, - #[error("Failed to open the file: {0}")] + #[error("failed to open the file: {0}")] FileOpenFailure(String), - #[error("Failed to retrieve the security context: {0}")] + #[error("failed to retrieve the security context: {0}")] ContextRetrievalFailure(String), - #[error("Failed to set default file creation context to '{0}': {1}")] + #[error("failed to set default file creation context to '{0}': {1}")] ContextSetFailure(String, String), - #[error("Failed to set default file creation context to '{0}': {1}")] + #[error("failed to set default file creation context to '{0}': {1}")] ContextConversionFailure(String, String), }