svn commit: trunk/busybox/util-linux

aldot at busybox.net aldot at busybox.net
Mon May 19 08:40:27 UTC 2008


Author: aldot
Date: 2008-05-19 01:40:26 -0700 (Mon, 19 May 2008)
New Revision: 22007

Log:
- mention FIXME use find_mount_point()


Modified:
   trunk/busybox/util-linux/fsck_minix.c


Changeset:
Modified: trunk/busybox/util-linux/fsck_minix.c
===================================================================
--- trunk/busybox/util-linux/fsck_minix.c	2008-05-19 08:25:23 UTC (rev 22006)
+++ trunk/busybox/util-linux/fsck_minix.c	2008-05-19 08:40:26 UTC (rev 22007)
@@ -378,7 +378,7 @@
 	struct mntent *mnt;
 	int cont;
 	int fd;
-
+//XXX:FIXME use find_mount_point()
 	f = setmntent(MOUNTED, "r");
 	if (f == NULL)
 		return;
@@ -405,7 +405,7 @@
 		cont = ask("Do you really want to continue", 0);
 	if (!cont) {
 		printf("Check aborted\n");
-		exit(0);
+		exit(EXIT_SUCCESS);
 	}
 }
 




More information about the busybox-cvs mailing list