From f251115fb036c0168f445b4b1634ff6e550669c3 Mon Sep 17 00:00:00 2001 From: Daria Phoebe Brashear Date: Tue, 8 Apr 2025 10:40:17 -0400 Subject: [PATCH] make is_local_fstype know auristorfs is remote Because fstype afs is used by the native kernel afs implementation, AuriStor claims to be type auristorfs. It is also a remote filesystem --- client-src/getfsent.c | 1 + 1 file changed, 1 insertion(+) diff --git a/client-src/getfsent.c b/client-src/getfsent.c index ef1911de47..ea24942b8b 100644 --- a/client-src/getfsent.c +++ b/client-src/getfsent.c @@ -516,6 +516,7 @@ is_local_fstype( return !g_str_equal(fsent->fstype, "nfs") && /* NFS */ !g_str_equal(fsent->fstype, "afs") && /* Andrew Filesystem */ + !g_str_equal(fsent->fstype, "auristorfs") && /* AuriStor Filesystem */ !g_str_equal(fsent->fstype, "swap") && /* Swap */ !g_str_equal(fsent->fstype, "iso9660") && /* CDROM */ !g_str_equal(fsent->fstype, "hs") && /* CDROM */