From: Ben Gras Date: Mon, 14 Nov 2011 22:18:31 +0000 (+0000) Subject: df: add case for MFSv3 X-Git-Tag: v3.2.0~254 X-Git-Url: http://zhaoyanbai.com/repos/doxygen.log?a=commitdiff_plain;h=0811b47a71de36f85e25c4051339f5240a0326c3;p=minix.git df: add case for MFSv3 . fix for FSes mounted with '-t mfs' syntax --- 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;