- mention FIXME use find_mount_point()
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Mon, 19 May 2008 08:40:26 +0000 (08:40 -0000)
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Mon, 19 May 2008 08:40:26 +0000 (08:40 -0000)
util-linux/fsck_minix.c

index 7ef54493619cc57abac197a48ab998558fea21f3..3ebc07661156e94a4d2b705846cfcf6229adabad 100644 (file)
@@ -378,7 +378,7 @@ static void check_mount(void)
        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 @@ static void check_mount(void)
                cont = ask("Do you really want to continue", 0);
        if (!cont) {
                printf("Check aborted\n");
-               exit(0);
+               exit(EXIT_SUCCESS);
        }
 }