From 0b1cd9c745125ed1065551d6901516f6caee9a44 Mon Sep 17 00:00:00 2001 From: Donald Buczek Date: Fri, 23 Sep 2022 09:54:55 +0200 Subject: [PATCH] Add "ecryptfs" as local filesystem My notebook uses ecryptfs and this sulry is a local filesystem. --- cmirror.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmirror.c b/cmirror.c index 64466a1..5354c07 100644 --- a/cmirror.c +++ b/cmirror.c @@ -517,7 +517,7 @@ static void out_of_the_way(FileInfo *fi) { static int is_local_fs(char *fs) { static GRegex *local_fs_regex; if (!local_fs_regex) - local_fs_regex = compile_pattern("^(advfs|ufs|ext\\d+|reiserfs|xfs|fuseblk|vfat|efs|tmpfs|btrfs)$"); + local_fs_regex = compile_pattern("^(advfs|ufs|ext\\d+|reiserfs|xfs|fuseblk|vfat|efs|tmpfs|btrfs|ecryptfs)$"); return g_regex_match(local_fs_regex, fs, 0, 0); }