summaryrefslogtreecommitdiff
path: root/src/stat.c
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2012-09-05 22:33:44 +0200
committerJim Meyering <meyering@redhat.com>2012-09-06 08:31:26 +0200
commit97b786a33d54ea6621e2cb9c48d56b7190a1eaf7 (patch)
treea76bd56633f64790df9900711050a5b51a232916 /src/stat.c
parentccbd3f3b290cb1bbed6a91361389bb936446621c (diff)
downloadcoreutils-97b786a33d54ea6621e2cb9c48d56b7190a1eaf7.tar.xz
tail,stat: add support for VZFS
* src/stat.c (human_fstype): Add a case: vzfs, 0x565A4653 (local). Reported by Jens Rosenboom in http://bugs.gnu.org/12356 * NEWS (Improvement): Mention it.
Diffstat (limited to 'src/stat.c')
-rw-r--r--src/stat.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/stat.c b/src/stat.c
index f75b7aff7..a9fb95165 100644
--- a/src/stat.c
+++ b/src/stat.c
@@ -415,6 +415,8 @@ human_fstype (STRUCT_STATVFS const *statfsbuf)
return "v9fs";
case S_MAGIC_VXFS: /* 0xA501FCF5 local */
return "vxfs";
+ case S_MAGIC_VZFS: /* 0x565A4653 local */
+ return "vzfs";
case S_MAGIC_XENFS: /* 0xABBA1974 local */
return "xenfs";
case S_MAGIC_XENIX: /* 0x012FF7B4 local */