Rename function to be more descriptive

This commit is contained in:
topjohnwu
2020-09-04 06:21:25 -07:00
parent fd5ad91d26
commit c61ec2465f
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -186,5 +186,5 @@ bool check_two_stage() {
return true;
// If we still have no indication, parse the original init and see what's up
auto init = raw_data::mmap_ro("/.backup/init");
return init.find("selinux_setup");
return init.contains("selinux_setup");
}