From: sparky Date: Mon, 6 Feb 2006 17:26:33 +0000 (+0000) Subject: - NEW, recognise nfs filesystem without special mountpoint name X-Git-Tag: auto/th/enlightenment-module-mount-0_0_7-1~1 X-Git-Url: http://git.pld-linux.org/?p=packages%2Fenlightenment-module-mount.git;a=commitdiff_plain;h=c750ab4e41bddc442e00af6509016bf183b9c37a - NEW, recognise nfs filesystem without special mountpoint name Changed files: enlightenment-module-mount-nfs.patch -> 1.1 --- diff --git a/enlightenment-module-mount-nfs.patch b/enlightenment-module-mount-nfs.patch new file mode 100644 index 0000000..0595313 --- /dev/null +++ b/enlightenment-module-mount-nfs.patch @@ -0,0 +1,11 @@ +--- mount/e_mod_main.c~ 2005-12-18 16:17:00.000000000 +0100 ++++ mount/e_mod_main.c 2006-02-06 18:18:14.000000000 +0100 +@@ -234,7 +234,7 @@ + point->part = strdup("camera"); + point->eject_mode = MANUAL_EJECT; + } +- else if (strstr(point->path, "smb")) ++ else if (strstr(point->path, "smb") || strcmp(info[2], "nfs") == 0) + { + point->part = strdup("network"); + point->eject_mode = MANUAL_EJECT;