]> git.pld-linux.org Git - packages/enlightenment-module-mount.git/blob - enlightenment-module-mount-nfs.patch
- NEW, recognise nfs filesystem without special mountpoint name
[packages/enlightenment-module-mount.git] / enlightenment-module-mount-nfs.patch
1 --- mount/e_mod_main.c~ 2005-12-18 16:17:00.000000000 +0100
2 +++ mount/e_mod_main.c  2006-02-06 18:18:14.000000000 +0100
3 @@ -234,7 +234,7 @@
4                   point->part = strdup("camera");
5                   point->eject_mode = MANUAL_EJECT;
6                }
7 -            else if (strstr(point->path, "smb"))
8 +            else if (strstr(point->path, "smb") || strcmp(info[2], "nfs") == 0)
9                {
10                   point->part = strdup("network");
11                   point->eject_mode = MANUAL_EJECT;
This page took 0.084231 seconds and 3 git commands to generate.