diff options
author | Rob Landley <rob@landley.net> | 2013-12-27 18:45:01 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2013-12-27 18:45:01 -0600 |
commit | dc3731783ead154d5a0d8d318566468474b43013 (patch) | |
tree | 9d57677eaceacbe64459f6bfb35944c5daa5db34 /toys/posix | |
parent | fc33eb78115adf8a90875f822706bdf3d462524c (diff) | |
download | toybox-dc3731783ead154d5a0d8d318566468474b43013.tar.gz |
Pass through all the readfile() arguments from xreadfile().
Diffstat (limited to 'toys/posix')
-rw-r--r-- | toys/posix/grep.c | 2 |
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 { |