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
diff --git a/mount.c b/mount.c
index c29be51..336cff7 100644
--- a/mount.c
+++ b/mount.c
@@ -142,7 +142,6 @@
 				fprintf(stderr, "WARNING: loop device is read-only\n");
 				flags &= ~MS_RDONLY;
 			}
-			use_loop = FALSE;
 		}
 #endif
 		status =
@@ -415,10 +414,10 @@
 				case 'a':
 					all = TRUE;
 					break;
-#ifdef BB_MTAB
 				case 'f':
 					fakeIt = TRUE;
 					break;
+#ifdef BB_MTAB
 				case 'n':
 					useMtab = FALSE;
 					break;