aboutsummaryrefslogtreecommitdiff
path: root/toys/posix/find.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2014-09-14 12:29:44 -0500
committerRob Landley <rob@landley.net>2014-09-14 12:29:44 -0500
commit360d57f843f5435a75270e54583430dcb8f62546 (patch)
tree2e043033414a0cb03b6eb86b3b662f7ca9571788 /toys/posix/find.c
parente1366f02fea3cb035cc4ed0b59d12f1962b6ebfd (diff)
downloadtoybox-360d57f843f5435a75270e54583430dcb8f62546.tar.gz
Split xpopen() into xpopen_both(), xpopen(), and xrun() depending on whether we want to redirect both, one, or neither of stdin/stdout.
Diffstat (limited to 'toys/posix/find.c')
-rw-r--r--toys/posix/find.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/posix/find.c b/toys/posix/find.c
index b74cb88e..9f679a02 100644
--- a/toys/posix/find.c
+++ b/toys/posix/find.c
@@ -102,7 +102,7 @@ static int flush_exec(struct dirtree *new, struct exec_range *aa)
newargs[pos+rest] = 0;
}
- rc = xpclose(xpopen(newargs, 0), 0);
+ rc = xrun(newargs);
llist_traverse(*dl, llist_free_double);
*dl = 0;