aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mount.c6
-rw-r--r--util-linux/mount.c6
2 files changed, 6 insertions, 6 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");
diff --git a/util-linux/mount.c b/util-linux/mount.c
index d1568d803..311d518aa 100644
--- a/util-linux/mount.c
+++ b/util-linux/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");