aboutsummaryrefslogtreecommitdiff
path: root/e2fsprogs
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-03-25 23:21:05 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-03-25 23:21:05 +0000
commit377526f2266c1473e0c699408c59a269c839263a (patch)
tree71e46e02914c97077eaa77e12a726b29240b27f6 /e2fsprogs
parent3c705200344cd09aa84e28e3c13e3595b3e764fb (diff)
downloadbusybox-w32-377526f2266c1473e0c699408c59a269c839263a.tar.gz
busybox-w32-377526f2266c1473e0c699408c59a269c839263a.tar.bz2
busybox-w32-377526f2266c1473e0c699408c59a269c839263a.zip
add NOMMU fixme's; move move_fd from runit_lib to libbb; nuke fd_copy
git-svn-id: svn://busybox.net/trunk/busybox@18237 69ca8d6d-28ef-0310-b511-8ec308f3f277
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,
667 /* Fork and execute the correct program. */ 667 /* Fork and execute the correct program. */
668 pid = -1; 668 pid = -1;
669 if (!noexecute) { 669 if (!noexecute) {
670 pid = fork(); /* TODO: NOMMU friendly way (vfork)? */ 670/* TODO: NOMMU friendly way (vfork)? */
671 pid = fork();
671 if (pid < 0) 672 if (pid < 0)
672 bb_perror_msg_and_die("fork"); 673 bb_perror_msg_and_die("fork");
673 if (pid == 0) { 674 if (pid == 0) {