From: Jim Meyering Date: Tue, 15 Feb 2005 12:23:40 +0000 (+0000) Subject: (human_fstype): Add case/definition for S_MAGIC_JFS X-Git-Tag: CPPI-1_12~1460 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3695d0212a7a89074e191258943e950a750ab07c;p=thirdparty%2Fcoreutils.git (human_fstype): Add case/definition for S_MAGIC_JFS so that file systems of type `jfs' are recognized as such. --- diff --git a/src/stat.c b/src/stat.c index 82ad454a49..f9f1459189 100644 --- a/src/stat.c +++ b/src/stat.c @@ -142,6 +142,8 @@ human_fstype (STRUCT_STATVFS const *statfsbuf) return "ext2"; case S_MAGIC_EXT2: /* 0xEF53 */ return "ext2/ext3"; + case S_MAGIC_JFS: /* 0x3153464a */ + return "jfs"; case S_MAGIC_XFS: /* 0x58465342 */ return "xfs"; case S_MAGIC_HPFS: /* 0xF995E849 */