diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-05-19 08:40:26 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-05-19 08:40:26 +0000 |
commit | cb83abd7b6b052224c1f3b998e863aac76914afd (patch) | |
tree | f99d2980cdcb77c7ae0675e6a305425cb74002a4 | |
parent | 3576bed2f9863f8561984b6b3b34af961bcbd544 (diff) | |
download | busybox-w32-cb83abd7b6b052224c1f3b998e863aac76914afd.tar.gz busybox-w32-cb83abd7b6b052224c1f3b998e863aac76914afd.tar.bz2 busybox-w32-cb83abd7b6b052224c1f3b998e863aac76914afd.zip |
- mention FIXME use find_mount_point()
-rw-r--r-- | util-linux/fsck_minix.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util-linux/fsck_minix.c b/util-linux/fsck_minix.c index 7ef544936..3ebc07661 100644 --- a/util-linux/fsck_minix.c +++ b/util-linux/fsck_minix.c | |||
@@ -378,7 +378,7 @@ static void check_mount(void) | |||
378 | struct mntent *mnt; | 378 | struct mntent *mnt; |
379 | int cont; | 379 | int cont; |
380 | int fd; | 380 | int fd; |
381 | 381 | //XXX:FIXME use find_mount_point() | |
382 | f = setmntent(MOUNTED, "r"); | 382 | f = setmntent(MOUNTED, "r"); |
383 | if (f == NULL) | 383 | if (f == NULL) |
384 | return; | 384 | return; |
@@ -405,7 +405,7 @@ static void check_mount(void) | |||
405 | cont = ask("Do you really want to continue", 0); | 405 | cont = ask("Do you really want to continue", 0); |
406 | if (!cont) { | 406 | if (!cont) { |
407 | printf("Check aborted\n"); | 407 | printf("Check aborted\n"); |
408 | exit(0); | 408 | exit(EXIT_SUCCESS); |
409 | } | 409 | } |
410 | } | 410 | } |
411 | 411 | ||