diff options
Diffstat (limited to 'util-linux/mount.c')
-rw-r--r-- | util-linux/mount.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/util-linux/mount.c b/util-linux/mount.c index 3aadbf72d..91f09e15c 100644 --- a/util-linux/mount.c +++ b/util-linux/mount.c | |||
@@ -1527,11 +1527,10 @@ static int singlemount(struct mntent *mp, int ignore_busy) | |||
1527 | if (ENABLE_FEATURE_CLEAN_UP) | 1527 | if (ENABLE_FEATURE_CLEAN_UP) |
1528 | free(filteropts); | 1528 | free(filteropts); |
1529 | 1529 | ||
1530 | if (rc && errno == EBUSY && ignore_busy) | 1530 | if (errno == EBUSY && ignore_busy) |
1531 | rc = 0; | 1531 | return 0; |
1532 | if (rc < 0) | 1532 | if (rc < 0) |
1533 | bb_perror_msg("mounting %s on %s failed", mp->mnt_fsname, mp->mnt_dir); | 1533 | bb_perror_msg("mounting %s on %s failed", mp->mnt_fsname, mp->mnt_dir); |
1534 | |||
1535 | return rc; | 1534 | return rc; |
1536 | } | 1535 | } |
1537 | 1536 | ||