From: Karel Zak Date: Wed, 2 Feb 2022 10:01:59 +0000 (+0100) Subject: libmount: add glusterfs between network filesystems X-Git-Tag: v2.38-rc2~52 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d6041872a6959a8271612e4a306cd00f945328d2;p=thirdparty%2Futil-linux.git libmount: add glusterfs between network filesystems Fixes: https://github.com/util-linux/util-linux/issues/1590 Signed-off-by: Karel Zak --- diff --git a/libmount/src/utils.c b/libmount/src/utils.c index e41ced2c3f..2a12f1128a 100644 --- a/libmount/src/utils.c +++ b/libmount/src/utils.c @@ -332,6 +332,7 @@ int mnt_fstype_is_netfs(const char *type) strncmp(type,"nfs", 3) == 0 || strcmp(type, "afs") == 0 || strcmp(type, "ncpfs") == 0 || + strcmp(type, "glusterfs") == 0 || strcmp(type, "fuse.curlftpfs") == 0 || strcmp(type, "fuse.sshfs") == 0 || strncmp(type,"9p", 2) == 0)