From: Jim Meyering Date: Thu, 10 Apr 2003 18:06:56 +0000 (+0000) Subject: (human_fstype): Handle Linux's devpts. X-Git-Tag: v5.0.1~757 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=641cba7b3d3d26c20425624310b6d6ee2a30b91a;p=thirdparty%2Fcoreutils.git (human_fstype): Handle Linux's devpts. --- diff --git a/src/stat.c b/src/stat.c index 5ca5cfdf59..62727581ac 100644 --- a/src/stat.c +++ b/src/stat.c @@ -127,6 +127,9 @@ human_fstype (STRUCT_STATVFS const *statfsbuf) case S_MAGIC_AFFS: type = "affs"; break; + case S_MAGIC_DEVPTS: + type = "devpts"; + break; case S_MAGIC_EXT: type = "ext"; break;