aboutsummaryrefslogtreecommitdiff
path: root/util-linux
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-09-07 19:33:56 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-09-07 19:33:56 +0000
commitc8d4d2f11d106f509a347787e223d863e8faa235 (patch)
tree71fabb4fa5104b79fd596fd910cf594d765904c0 /util-linux
parentd7ecd863c855a53e263486e742a4adfb871d9127 (diff)
downloadbusybox-c8d4d2f11d106f509a347787e223d863e8faa235.tar.gz
messages: by popular request allow PATH to be customized at build time
mount: smallish code shrink
Diffstat (limited to 'util-linux')
-rw-r--r--util-linux/mount.c5
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)
if (ENABLE_FEATURE_CLEAN_UP)
free(filteropts);
- if (rc && errno == EBUSY && ignore_busy)
- rc = 0;
+ if (errno == EBUSY && ignore_busy)
+ return 0;
if (rc < 0)
bb_perror_msg("mounting %s on %s failed", mp->mnt_fsname, mp->mnt_dir);
-
return rc;
}