mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 01:51:00 +03:00
Handle /etc/mtab -> /proc/mounts symlink
Under Fedora 15 /etc/mtab is now a symlink to /proc/mounts by default. When /etc/mtab is a symlink the mount.zfs helper should not update it. There was code in place to handle this case but it used stat() which traverses the link and then issues the stat on /proc/mounts. We need to use lstat() to prevent the link traversal and instead stat /etc/mtab. Closes #270
This commit is contained in:
parent
2e08aedba4
commit
e130330a87
@ -252,7 +252,7 @@ mtab_is_writeable(void)
|
||||
struct stat st;
|
||||
int error, fd;
|
||||
|
||||
error = stat(MNTTAB, &st);
|
||||
error = lstat(MNTTAB, &st);
|
||||
if (error || S_ISLNK(st.st_mode))
|
||||
return (0);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user