diff options
author | Denis Vlasenko | 2007-09-07 19:33:56 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-09-07 19:33:56 +0000 |
commit | c8d4d2f11d106f509a347787e223d863e8faa235 (patch) | |
tree | 71fabb4fa5104b79fd596fd910cf594d765904c0 /util-linux | |
parent | d7ecd863c855a53e263486e742a4adfb871d9127 (diff) | |
download | busybox-c8d4d2f11d106f509a347787e223d863e8faa235.zip busybox-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.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/util-linux/mount.c b/util-linux/mount.c index 3aadbf7..91f09e1 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; } |