Fixed the "-f" option.
authorEric Andersen <andersen@codepoet.org>
Wed, 2 Aug 2000 18:56:25 +0000 (18:56 -0000)
committerEric Andersen <andersen@codepoet.org>
Wed, 2 Aug 2000 18:56:25 +0000 (18:56 -0000)
 -Erik

mount.c
util-linux/mount.c

diff --git a/mount.c b/mount.c
index 9f25e05..fc05747 100644 (file)
--- a/mount.c
+++ b/mount.c
@@ -121,9 +121,7 @@ do_mount(char *specialfile, char *dir, char *filesystemtype,
        int status = 0;
        char *lofile = NULL;
 
-#if defined BB_MTAB
        if (fakeIt == FALSE)
-#endif
        {
 #if defined BB_FEATURE_MOUNT_LOOP
                if (use_loop==TRUE) {
@@ -150,7 +148,7 @@ do_mount(char *specialfile, char *dir, char *filesystemtype,
 
 
        /* If the mount was sucessful, do anything needed, then return TRUE */
-       if (status == 0) {
+       if (status == 0 || fakeIt==TRUE) {
 
 #if defined BB_MTAB
                if (useMtab == TRUE) {
index 9f25e05..fc05747 100644 (file)
@@ -121,9 +121,7 @@ do_mount(char *specialfile, char *dir, char *filesystemtype,
        int status = 0;
        char *lofile = NULL;
 
-#if defined BB_MTAB
        if (fakeIt == FALSE)
-#endif
        {
 #if defined BB_FEATURE_MOUNT_LOOP
                if (use_loop==TRUE) {
@@ -150,7 +148,7 @@ do_mount(char *specialfile, char *dir, char *filesystemtype,
 
 
        /* If the mount was sucessful, do anything needed, then return TRUE */
-       if (status == 0) {
+       if (status == 0 || fakeIt==TRUE) {
 
 #if defined BB_MTAB
                if (useMtab == TRUE) {