mirror of
https://github.com/ponces/treble_aosp.git
synced 2024-11-22 04:16:14 +00:00
26 lines
998 B
Diff
26 lines
998 B
Diff
From 6fe4ae3a8172443330a4a4c48fd6f05a02975a7c Mon Sep 17 00:00:00 2001
|
|
From: Pierre-Hugues Husson <phh@phh.me>
|
|
Date: Fri, 6 Oct 2023 08:49:59 -0400
|
|
Subject: [PATCH 10/10] Allow conflict on fuseblk
|
|
|
|
---
|
|
libsepol/cil/src/cil_post.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/libsepol/cil/src/cil_post.c b/libsepol/cil/src/cil_post.c
|
|
index 1703b3b6..5428005d 100644
|
|
--- a/libsepol/cil/src/cil_post.c
|
|
+++ b/libsepol/cil/src/cil_post.c
|
|
@@ -511,7 +511,7 @@ static int cil_post_genfscon_context_compare(const void *a, const void *b)
|
|
*/
|
|
if(strcmp(a_genfscon->path_str, "/sys/vm/watermark_scale_factor") == 0)
|
|
bypass = 1;
|
|
- if(strcmp(a_genfscon->fs_str, "exfat") == 0 || strcmp(a_genfscon->fs_str, "esdfs") == 0) {
|
|
+ if(strcmp(a_genfscon->fs_str, "exfat") == 0 || strcmp(a_genfscon->fs_str, "esdfs") == 0 || strcmp(a_genfscon->fs_str, "fuseblk") == 0) {
|
|
if(strcmp(a_genfscon->path_str, "/") == 0)
|
|
bypass = 1;
|
|
}
|
|
--
|
|
2.34.1
|
|
|