From 641cba7b3d3d26c20425624310b6d6ee2a30b91a Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Thu, 10 Apr 2003 18:06:56 +0000 Subject: [PATCH] (human_fstype): Handle Linux's devpts. --- src/stat.c | 3 +++ 1 file changed, 3 insertions(+) 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; -- 2.47.3