diff options
author | Pádraig Brady <P@draigBrady.com> | 2013-04-24 22:59:46 +0100 |
---|---|---|
committer | Pádraig Brady <P@draigBrady.com> | 2013-04-28 03:43:40 +0100 |
commit | e414ff4c4c3fe029a9702c9909bf4eccbef68c21 (patch) | |
tree | 851e0eab9f33f3b69d422dbee0346cfca9579172 /src | |
parent | 94f4f658f029f5d0083c6e8fab75d74b73ee5a33 (diff) | |
download | coreutils-e414ff4c4c3fe029a9702c9909bf4eccbef68c21.tar.xz |
stat,tail: improve support for snfs
The StorNext distributed file system was previously known as CVFS.
* src/stat.c (human_fstype): Add new file system ID definition.
* NEWS: Mention the improvement.
Fixes http://bugs.gnu.org/14251
Diffstat (limited to 'src')
-rw-r--r-- | src/stat.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/stat.c b/src/stat.c index 8ba958a02..a1d558ce1 100644 --- a/src/stat.c +++ b/src/stat.c @@ -399,6 +399,8 @@ human_fstype (STRUCT_STATVFS const *statfsbuf) return "selinux"; case S_MAGIC_SMB: /* 0x517B remote */ return "smb"; + case S_MAGIC_SNFS: /* 0xBEEFDEAD remote */ + return "snfs"; case S_MAGIC_SOCKFS: /* 0x534F434B local */ return "sockfs"; case S_MAGIC_SQUASHFS: /* 0x73717368 local */ |