File gnome-vfs2-149355-novfs-is-not-local.diff of Package gnome-vfs2
2006-05-05 Federico Mena Quintero <federico@novell.com>
Fix https://bugzilla.novell.com/show_bug.cgi?id=149355
* modules/file-method.c (do_is_local): Add "novfs" to the list of
file systems that are not local. Those mounts come from Novell
Client for Linux, i.e. they are remote Netware mounts.
================================================================================
--- gnome-vfs-2.16.0/modules/file-method.c
+++ gnome-vfs-2.16.0/modules/file-method.c
@@ -1274,6 +1274,7 @@
(strcmp (type, "afs") != 0) &&
(strcmp (type, "autofs") != 0) &&
(strcmp (type, "unknown") != 0) &&
+ (strcmp (type, "novfs") != 0) &&
(strcmp (type, "ncpfs") != 0));
G_UNLOCK (fstype);
} else {