Skip to content

Commit

Permalink
Refactor determine_directory_mode function for fuse-overlayfs compati…
Browse files Browse the repository at this point in the history
…bility
  • Loading branch information
younghojan committed Sep 5, 2024
1 parent a8a3516 commit 34f57f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion benchexec/container.py
Original file line number Diff line number Diff line change
Expand Up @@ -692,7 +692,7 @@ def determine_directory_mode(dir_modes, path, fstype=None):
result_mode == DIR_OVERLAY
and fstype
and (
fstype.startswith(b"fuse.")
(fstype.startswith(b"fuse.") and fstype != b"fuse.fuse-overlayfs")
or fstype == b"autofs"
or fstype == b"vfat"
or fstype == b"ntfs"
Expand Down

0 comments on commit 34f57f1

Please sign in to comment.