+2008-03-19 Sebastien Bacher <seb128@ubuntu.com>
+
+ * gunixmounts.c: (guess_mount_type):
+ consider nfs4 mounts as G_UNIX_MOUNT_TYPE_NFS (Closes: #523338)
+
2008-03-19 Alexander Larsson <alexl@redhat.com>
* gfile.c:
(strcmp (filesystem_type, "iso9660") == 0) ||
(strcmp (filesystem_type, "cd9660") == 0))
type = G_UNIX_MOUNT_TYPE_CDROM;
- else if (strcmp (filesystem_type, "nfs") == 0)
+ else if ((strcmp (filesystem_type, "nfs") == 0) ||
+ (strcmp (filesystem_type, "nfs4") == 0))
type = G_UNIX_MOUNT_TYPE_NFS;
else if (g_str_has_prefix (device_path, "/vol/dev/diskette/") ||
g_str_has_prefix (device_path, "/dev/fd") ||