Some bug fixes I forgot to check-in the other day.

Mounting loop devices w/o specifying the filesystem
type choked if it didn't guess right the first time.
 -Erik
This commit is contained in:
Erik Andersen
2000-03-13 04:07:02 +00:00
parent 3522eb1ab3
commit ce91732416
5 changed files with 32 additions and 6 deletions

View File

@ -142,7 +142,6 @@ do_mount(char *specialfile, char *dir, char *filesystemtype,
fprintf(stderr, "WARNING: loop device is read-only\n");
flags &= ~MS_RDONLY;
}
use_loop = FALSE;
}
#endif
status =
@ -415,10 +414,10 @@ extern int mount_main(int argc, char **argv)
case 'a':
all = TRUE;
break;
#ifdef BB_MTAB
case 'f':
fakeIt = TRUE;
break;
#ifdef BB_MTAB
case 'n':
useMtab = FALSE;
break;