We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94d4ce8 commit 78f37eaCopy full SHA for 78f37ea
src/selabel.rs
@@ -245,7 +245,7 @@ fn parse_config(file: impl Read) -> Result<Option<String>> {
245
for line in BufReader::new(file).lines() {
246
if let Some((key, value)) = line?.split_once('=') {
247
// this might be a comment, but then key will start with '#'
248
- if key.trim().to_ascii_uppercase() == "SELINUXTYPE" {
+ if key.trim().eq_ignore_ascii_case("SELINUXTYPE") {
249
return Ok(Some(value.trim().to_string()));
250
}
251
0 commit comments