Blame SOURCES/coreutils-8.32-stat-exfat.patch

e63663
From b87f944c87ffe04db6e5476b007a8e4979de933d Mon Sep 17 00:00:00 2001
e63663
From: Kamil Dudka <kdudka@redhat.com>
e63663
Date: Thu, 18 Feb 2021 11:18:04 +0100
e63663
Subject: [PATCH] stat,tail: add support for the exfat file system
e63663
e63663
Bug: https://bugzilla.redhat.com/1921427
e63663
e63663
* src/stat.c (human_fstype): Add case for the 'exfat' file system type.
e63663
Fixes https://bugs.gnu.org/46613
e63663
e63663
Upstream-commit: a5e0d8f387e81e854427addbbaf2504541bbf4b9
e63663
Signed-off-by: Kamil Dudka <kdudka@redhat.com>
e63663
---
e63663
 src/stat.c | 2 ++
e63663
 1 file changed, 2 insertions(+)
e63663
e63663
diff --git a/src/stat.c b/src/stat.c
e63663
index 8cd69da..4e1c8e3 100644
e63663
--- a/src/stat.c
e63663
+++ b/src/stat.c
e63663
@@ -361,6 +361,8 @@ human_fstype (STRUCT_STATVFS const *statfsbuf)
e63663
       return "efs";
e63663
     case S_MAGIC_EROFS_V1: /* 0xE0F5E1E2 local */
e63663
       return "erofs";
e63663
+    case S_MAGIC_EXFAT: /* 0x2011BAB0 local */
e63663
+      return "exfat";
e63663
     case S_MAGIC_EXFS: /* 0x45584653 local */
e63663
       return "exfs";
e63663
     case S_MAGIC_EXOFS: /* 0x5DF5 local */
e63663
-- 
e63663
2.26.2
e63663