Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Kraai <kraai@debian.org>2001-04-17 08:26:05 +0400
committerMatt Kraai <kraai@debian.org>2001-04-17 08:26:05 +0400
commit24ed3bee0c4ca631855a0f43f75e30ba0c134b9f (patch)
tree46b93cb7ab0d0a68ae27d1c2f7d12571001e5ce8 /mount.c
parent3d406da0c90e319d0e05f75e2dcd485d5954fc1d (diff)
Fix -a support (broken by previous patch).
Diffstat (limited to 'mount.c')
-rw-r--r--mount.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mount.c b/mount.c
index d1568d803..311d518aa 100644
--- a/mount.c
+++ b/mount.c
@@ -405,14 +405,14 @@ extern int mount_main(int argc, char **argv)
argv++;
}
- if (device == NULL && directory == NULL)
- goto goodbye;
-
if (all == TRUE || directory == NULL) {
struct mntent *m;
FILE *f = setmntent("/etc/fstab", "r");
fstabmount = TRUE;
+ if (all == FALSE && device == NULL)
+ goto goodbye;
+
if (f == NULL)
perror_msg_and_die( "\nCannot read /etc/fstab");