aboutsummaryrefslogtreecommitdiff
path: root/util-linux
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2003-02-28 06:29:27 +0000
committerEric Andersen <andersen@codepoet.org>2003-02-28 06:29:27 +0000
commit5ef448285b6e5b27ca2ac83defa6c1adec13bab6 (patch)
treea1a96e86cc9df2096201d6db57a1f1e18d351795 /util-linux
parenta0ac4523b1ebceff60ced8c7d079caf0ffc0db8b (diff)
downloadbusybox-5ef448285b6e5b27ca2ac83defa6c1adec13bab6.tar.gz
There is no good reason to prevent nfs mounts from being mounted
during 'mount -a'. If the user wants to do that, hey, its their lifs. If the nfs server is down and they don't want to wait for nfs to time out, that is their problem. -Erik
Diffstat (limited to 'util-linux')
-rw-r--r--util-linux/mount.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/util-linux/mount.c b/util-linux/mount.c
index 32d0dd5b9..b3e945ce3 100644
--- a/util-linux/mount.c
+++ b/util-linux/mount.c
@@ -439,8 +439,8 @@ extern int mount_main(int argc, char **argv)
if (all && ( /* If we're mounting 'all' */
(strstr(m->mnt_opts, "noauto")) || /* and the file system isn't noauto, */
- (strstr(m->mnt_type, "swap")) || /* and isn't swap or nfs, then mount it */
- (strstr(m->mnt_type, "nfs")))) {
+ (strstr(m->mnt_type, "swap")))) /* and isn't swap, then mount it */
+ {
continue;
}