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

selinux: fix empty_line_after_doc_comments

This commit is contained in:
Daniel Hofstetter 2025-04-18 13:47:31 +02:00
parent 5e929577a8
commit 0309ccd28b

View file

@ -144,7 +144,6 @@ pub fn set_selinux_security_context(path: &Path, context: Option<&String>) -> Re
/// Err(Error::ContextConversionFailure) => println!("Failed to convert the security context to a string"),
/// }
/// ```
pub fn get_selinux_security_context(path: &Path) -> Result<String, Error> {
if !is_selinux_enabled() {
return Err(Error::SELinuxNotEnabled);