mirror of
https://github.com/sheumann/hush.git
synced 2024-12-21 23:29:34 +00:00
mount: fix a case when sometimes error message is not printed
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
77cc2c5738
commit
fa1b3705a3
@ -1718,9 +1718,9 @@ static int singlemount(struct mntent *mp, int ignore_busy)
|
|||||||
|
|
||||||
// If we know the fstype (or don't need to), jump straight
|
// If we know the fstype (or don't need to), jump straight
|
||||||
// to the actual mount.
|
// to the actual mount.
|
||||||
if (mp->mnt_type || (vfsflags & (MS_REMOUNT | MS_BIND | MS_MOVE)))
|
if (mp->mnt_type || (vfsflags & (MS_REMOUNT | MS_BIND | MS_MOVE))) {
|
||||||
rc = mount_it_now(mp, vfsflags, filteropts);
|
rc = mount_it_now(mp, vfsflags, filteropts);
|
||||||
else {
|
} else {
|
||||||
// Loop through filesystem types until mount succeeds
|
// Loop through filesystem types until mount succeeds
|
||||||
// or we run out
|
// or we run out
|
||||||
|
|
||||||
@ -1756,7 +1756,7 @@ static int singlemount(struct mntent *mp, int ignore_busy)
|
|||||||
|
|
||||||
if (errno == EBUSY && ignore_busy)
|
if (errno == EBUSY && ignore_busy)
|
||||||
return 0;
|
return 0;
|
||||||
if (rc < 0)
|
if (rc != 0)
|
||||||
bb_perror_msg("mounting %s on %s failed", mp->mnt_fsname, mp->mnt_dir);
|
bb_perror_msg("mounting %s on %s failed", mp->mnt_fsname, mp->mnt_dir);
|
||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user