From eb58d943411cd4dcb84f7d4807ebaf8858cc9788 Mon Sep 17 00:00:00 2001 From: Andrew Borodin Date: Sun, 13 Jun 2021 11:15:56 +0300 Subject: [PATCH] src/filemanager/mountlist.c: recognize fuse.portal as dummy file system. Sync with gnulib 9a38d499ca16f2f4304992eb1ab0894cd0b478e1. Add "fuse.portal" as a dummy file system (used in flatpak implementations). Signed-off-by: Andrew Borodin --- src/filemanager/mountlist.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/filemanager/mountlist.c b/src/filemanager/mountlist.c index ccd7066ad..9454c502f 100644 --- a/src/filemanager/mountlist.c +++ b/src/filemanager/mountlist.c @@ -205,6 +205,7 @@ || strcmp (Fs_type, "debugfs") == 0 \ || strcmp (Fs_type, "devpts") == 0 \ || strcmp (Fs_type, "fusectl") == 0 \ + || strcmp (Fs_type, "fuse.portal") == 0 \ || strcmp (Fs_type, "mqueue") == 0 \ || strcmp (Fs_type, "rpc_pipefs") == 0 \ || strcmp (Fs_type, "sysfs") == 0 \