From 99dd47ec86b508410df64bef2b7bf4922215cf5b Mon Sep 17 00:00:00 2001 From: Pádraig Brady Date: Thu, 12 May 2016 09:50:48 +0100 Subject: stat,tail: add support for the SMB2 remote file system * stc/stat.c (human_fstype): Add file system ID definition, and use "smb2" as the name. * NEWS (Improvements): Mention the change. Fixes http://bugs.gnu.org/23516 --- src/stat.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/stat.c') diff --git a/src/stat.c b/src/stat.c index 7a20ff782..8c831b5be 100644 --- a/src/stat.c +++ b/src/stat.c @@ -434,6 +434,8 @@ human_fstype (STRUCT_STATVFS const *statfsbuf) return "smackfs"; case S_MAGIC_SMB: /* 0x517B remote */ return "smb"; + case S_MAGIC_SMB2: /* 0xFE534D42 remote */ + return "smb2"; case S_MAGIC_SNFS: /* 0xBEEFDEAD remote */ return "snfs"; case S_MAGIC_SOCKFS: /* 0x534F434B local */ -- cgit v1.2.3-54-g00ecf