This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository evisum.
View the commit online.
commit 6640b9807c5ecc9eb91c60982510b65bac3d83bf
Author: Alastair Poole <[email protected]>
AuthorDate: Sun Mar 29 19:15:05 2026 +0100
fs: allow fuse and exfat
---
src/bin/system/filesystems.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/src/bin/system/filesystems.c b/src/bin/system/filesystems.c
index 4842daf..0343210 100644
--- a/src/bin/system/filesystems.c
+++ b/src/bin/system/filesystems.c
@@ -66,7 +66,10 @@ file_system_info_all_get(void) {
continue;
}
- if (((strcmp(type_name, "fuseblk")) && (strstr(cp, "nodev"))) || (statfs(mount, &stats) < 0)
+ Eina_Bool ok = EINA_TRUE;
+ if ((strcmp(type_name, "fuseblk")) && (strcmp(type_name, "exfat"))) ok = EINA_FALSE;
+
+ if (((!ok) && (strstr(cp, "nodev"))) || (statfs(mount, &stats) < 0)
|| (stats.f_blocks == 0 && stats.f_bfree == 0)) {
free(dev);
free(type_name);
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.