Skip to content

Commit 78f37ea

Browse files
authored
selabel: Fix clippy lint (#61)
``` warning: manual case-insensitive ASCII comparison --> src/selabel.rs:248:16 | 248 | if key.trim().to_ascii_uppercase() == "SELINUXTYPE" { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#manual_ignore_case_cmp = note: `#[warn(clippy::manual_ignore_case_cmp)]` on by default help: consider using `.eq_ignore_ascii_case()` instead | 248 | if key.trim().eq_ignore_ascii_case("SELINUXTYPE") { | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ``` Signed-off-by: Timothée Ravier <[email protected]>
1 parent 94d4ce8 commit 78f37ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/selabel.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ fn parse_config(file: impl Read) -> Result<Option<String>> {
245245
for line in BufReader::new(file).lines() {
246246
if let Some((key, value)) = line?.split_once('=') {
247247
// this might be a comment, but then key will start with '#'
248-
if key.trim().to_ascii_uppercase() == "SELINUXTYPE" {
248+
if key.trim().eq_ignore_ascii_case("SELINUXTYPE") {
249249
return Ok(Some(value.trim().to_string()));
250250
}
251251
}

0 commit comments

Comments
 (0)