mirror of
https://github.com/sheumann/hush.git
synced 2025-01-05 14:29:56 +00:00
Using lstat() instead of stat() means that attempting to loopback mount
a symlink doesn't work.
This commit is contained in:
parent
7250915d78
commit
47b16a6fe9
@ -285,7 +285,7 @@ static int singlemount(struct mntent *mp, int ignore_busy)
|
|||||||
// Look at the file. (Not found isn't a failure for remount, or for
|
// Look at the file. (Not found isn't a failure for remount, or for
|
||||||
// a synthetic filesystem like proc or sysfs.)
|
// a synthetic filesystem like proc or sysfs.)
|
||||||
|
|
||||||
if (lstat(mp->mnt_fsname, &st));
|
if (stat(mp->mnt_fsname, &st));
|
||||||
else if (!(vfsflags & (MS_REMOUNT | MS_BIND | MS_MOVE))) {
|
else if (!(vfsflags & (MS_REMOUNT | MS_BIND | MS_MOVE))) {
|
||||||
// Do we need to allocate a loopback device for it?
|
// Do we need to allocate a loopback device for it?
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user