From 0811b47a71de36f85e25c4051339f5240a0326c3 Mon Sep 17 00:00:00 2001 From: Ben Gras Date: Mon, 14 Nov 2011 22:18:31 +0000 Subject: [PATCH] df: add case for MFSv3 . fix for FSes mounted with '-t mfs' syntax --- commands/df/df.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/df/df.c b/commands/df/df.c index 908b58a10..8fb29033e 100644 --- a/commands/df/df.c +++ b/commands/df/df.c @@ -185,7 +185,7 @@ static void readmtab(const char *type) devname[0] != 0) { if (strcmp(type, "dev") == 0) { if (strcmp(version, "1") != 0 && strcmp(version, "2") != 0 && - strcmp(version, "3")) + strcmp(version, "3") && strcmp(version, "MFSv3")) continue; } else { if (strcmp(type, version) != 0) continue; -- 2.44.0