From: Karel Zak Date: Tue, 13 Mar 2012 12:25:49 +0000 (+0100) Subject: libmount: add nfsd to mnt_fstype_is_pseudofs() X-Git-Tag: v2.21.1~22 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5f64a09015992e268834fffb60a10d99fe6f46f2;p=thirdparty%2Futil-linux.git libmount: add nfsd to mnt_fstype_is_pseudofs() Signed-off-by: Karel Zak --- diff --git a/libmount/src/utils.c b/libmount/src/utils.c index c7a1fd1774..4d316d1796 100644 --- a/libmount/src/utils.c +++ b/libmount/src/utils.c @@ -235,6 +235,7 @@ int mnt_fstype_is_pseudofs(const char *type) strcmp(type, "binfmt_misc") == 0 || strcmp(type, "fuse.gvfs-fuse-daemon") == 0 || strcmp(type, "debugfs") == 0 || + strcmp(type, "nfsd") == 0 || strcmp(type, "spufs") == 0) return 1; return 0;