Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-03-26 03:21:05 +0400
committerDenis Vlasenko <vda.linux@googlemail.com>2007-03-26 03:21:05 +0400
commitcad04ef4f3435e56181a81c896912543be34ea3c (patch)
tree71e46e02914c97077eaa77e12a726b29240b27f6 /e2fsprogs
parent10f8f5f4433a88b9cf9048d38a45838aa6e2abf6 (diff)
add NOMMU fixme's; move move_fd from runit_lib to libbb; nuke fd_copy
Diffstat (limited to 'e2fsprogs')
-rw-r--r--e2fsprogs/fsck.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/e2fsprogs/fsck.c b/e2fsprogs/fsck.c
index ad22fcd7a..c31ab3f1a 100644
--- a/e2fsprogs/fsck.c
+++ b/e2fsprogs/fsck.c
@@ -667,7 +667,8 @@ static void execute(const char *type, const char *device, const char *mntpt,
/* Fork and execute the correct program. */
pid = -1;
if (!noexecute) {
- pid = fork(); /* TODO: NOMMU friendly way (vfork)? */
+/* TODO: NOMMU friendly way (vfork)? */
+ pid = fork();
if (pid < 0)
bb_perror_msg_and_die("fork");
if (pid == 0) {