aboutsummaryrefslogtreecommitdiff
path: root/mount.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2000-08-02 18:56:25 +0000
committerEric Andersen <andersen@codepoet.org>2000-08-02 18:56:25 +0000
commit0c8e2a6580cb83dbca842751fdf672c4f5d2f9bd (patch)
tree226ef6e0baf8772f4d4203cbfa481e99e249b8d1 /mount.c
parentfdd51033480e6d93af274bfd0df25b14aaea6c3b (diff)
downloadbusybox-0c8e2a6580cb83dbca842751fdf672c4f5d2f9bd.tar.gz
Fixed the "-f" option.
-Erik
Diffstat (limited to 'mount.c')
-rw-r--r--mount.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/mount.c b/mount.c
index 9f25e05ce..fc057473f 100644
--- 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) {