whoops, forgot to make mounted devices user-readable with eeze mounting. fixed!

SVN revision: 72128
This commit is contained in:
Mike Blumenkrantz 2012-06-14 12:46:32 +00:00
parent d6effc2043
commit 1f2732b978
1 changed files with 1 additions and 7 deletions

View File

@ -492,13 +492,6 @@ _e_fm_main_eeze_volume_mount(E_Volume *v)
if (v->fstype)
{
if ((!strcmp(v->fstype, "vfat")) ||
(!strcmp(v->fstype, "ntfs"))
)
{
opts = EEZE_DISK_MOUNTOPT_UID;
}
if ((!strcmp(v->fstype, "vfat")) ||
(!strcmp(v->fstype, "ntfs")) ||
(!strcmp(v->fstype, "iso9660")) ||
@ -507,6 +500,7 @@ _e_fm_main_eeze_volume_mount(E_Volume *v)
opts |= EEZE_DISK_MOUNTOPT_UTF8;
}
}
opts |= EEZE_DISK_MOUNTOPT_UID | EEZE_DISK_MOUNTOPT_NOSUID;
/* here we arbitrarily mount everything to $E_HOME/fileman/$something regardless of fstab */
eina_stringshare_del(v->mount_point);