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 /lib/xwrap.c | |
parent | fc33eb78115adf8a90875f822706bdf3d462524c (diff) | |
download | toybox-dc3731783ead154d5a0d8d318566468474b43013.tar.gz |
Pass through all the readfile() arguments from xreadfile().
Diffstat (limited to 'lib/xwrap.c')
-rw-r--r-- | lib/xwrap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/xwrap.c b/lib/xwrap.c index 08a93ddf..ae296cd6 100644 --- a/lib/xwrap.c +++ b/lib/xwrap.c @@ -451,10 +451,10 @@ char *xreadlink(char *name) } } -char *xreadfile(char *name) +char *xreadfile(char *name, char *buf, off_t len) { - char *buf = readfile(name, 0, 0); - if (!buf) perror_exit("xreadfile %s", name); + if (!(buf = readfile(name, buf, len))) perror_exit("Bad '%s'", name); + return buf; } |