aboutsummaryrefslogtreecommitdiff
path: root/toys/posix/grep.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2013-12-27 18:45:01 -0600
committerRob Landley <rob@landley.net>2013-12-27 18:45:01 -0600
commitdc3731783ead154d5a0d8d318566468474b43013 (patch)
tree9d57677eaceacbe64459f6bfb35944c5daa5db34 /toys/posix/grep.c
parentfc33eb78115adf8a90875f822706bdf3d462524c (diff)
downloadtoybox-dc3731783ead154d5a0d8d318566468474b43013.tar.gz
Pass through all the readfile() arguments from xreadfile().
Diffstat (limited to 'toys/posix/grep.c')
-rw-r--r--toys/posix/grep.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/posix/grep.c b/toys/posix/grep.c
index 8877f452..d78f7559 100644
--- a/toys/posix/grep.c
+++ b/toys/posix/grep.c
@@ -186,7 +186,7 @@ static void parse_regex(void)
// exit to free. Not supporting nofork for this command any time soon.)
al = TT.f ? TT.f : TT.e;
while (al) {
- if (TT.f) s = ss = xreadfile(al->arg);
+ if (TT.f) s = ss = xreadfile(al->arg, 0, 0);
else s = ss = al->arg;
do {