summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-04-10 18:06:56 +0000
committerJim Meyering <jim@meyering.net>2003-04-10 18:06:56 +0000
commit641cba7b3d3d26c20425624310b6d6ee2a30b91a (patch)
treea10b56c986acacc2f3bbdc8d8f1f4f3d2fe6beab /src
parent83aa79e26a07d8dcd91845c38172c20dd74150a6 (diff)
downloadcoreutils-641cba7b3d3d26c20425624310b6d6ee2a30b91a.tar.xz
(human_fstype): Handle Linux's devpts.
Diffstat (limited to 'src')
-rw-r--r--src/stat.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/stat.c b/src/stat.c
index 5ca5cfdf5..62727581a 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;