mirror of
https://github.com/ChonDoit/treble_superior_patches.git
synced 2024-11-25 11:16:19 +00:00
28 lines
990 B
Diff
28 lines
990 B
Diff
From 1b6e0989e7c8fdd3d4813f4aa19aa40d39b43d79 Mon Sep 17 00:00:00 2001
|
|
From: Pierre-Hugues Husson <phh@phh.me>
|
|
Date: Sun, 24 May 2020 17:22:22 +0200
|
|
Subject: [PATCH 06/10] Allow mismatches of exfat genfscon
|
|
|
|
---
|
|
libsepol/cil/src/cil_post.c | 4 ++++
|
|
1 file changed, 4 insertions(+)
|
|
|
|
diff --git a/libsepol/cil/src/cil_post.c b/libsepol/cil/src/cil_post.c
|
|
index 99410da0..7f614c03 100644
|
|
--- a/libsepol/cil/src/cil_post.c
|
|
+++ b/libsepol/cil/src/cil_post.c
|
|
@@ -502,6 +502,10 @@ static int cil_post_genfscon_context_compare(const void *a, const void *b)
|
|
*/
|
|
if(strcmp(a_genfscon->path_str, "/devices/virtual/block/") == 0)
|
|
bypass = 1;
|
|
+ if(strcmp(a_genfscon->fs_str, "exfat") == 0 || strcmp(a_genfscon->fs_str, "esdfs") == 0) {
|
|
+ if(strcmp(a_genfscon->path_str, "/") == 0)
|
|
+ bypass = 1;
|
|
+ }
|
|
if(bypass == 1) {
|
|
fprintf(stderr, "Received conflicting %s vs %s but ignore\n", a_genfscon->path_str, b_genfscon->path_str);
|
|
return 0;
|
|
--
|
|
2.34.1
|
|
|