Skip to content

Commit

Permalink
Allow conflict on fuseblk
Browse files Browse the repository at this point in the history
  • Loading branch information
phhusson authored and ponces committed Oct 14, 2024
1 parent 15f2e0f commit 6e9938d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libsepol/cil/src/cil_post.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 6e9938d

Please sign in to comment.