diff options
author | Glenn L McGrath | 2003-11-21 22:24:57 +0000 |
---|---|---|
committer | Glenn L McGrath | 2003-11-21 22:24:57 +0000 |
commit | 7ffe1338647d2b890df3ae46e526410b21a90d18 (patch) | |
tree | e949e5879a7083bac9e2da249363f9c613d0a409 /libbb/print_file.c | |
parent | 1a2d75fd7273e8de936e5fd91462bdff381f9b62 (diff) | |
download | busybox-7ffe1338647d2b890df3ae46e526410b21a90d18.zip busybox-7ffe1338647d2b890df3ae46e526410b21a90d18.tar.gz |
As we no longer use function pointers for read in common archiving code
archive_xread can be replaced with bb_full_read, and archive_copy_file
with bb_copyfd*
bb_copyfd is split into two functions bb_copyfd_size and bb_copyfd_eof,
they share a common backend.
Diffstat (limited to 'libbb/print_file.c')
-rw-r--r-- | libbb/print_file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/print_file.c b/libbb/print_file.c index 6d3667b..161b398 100644 --- a/libbb/print_file.c +++ b/libbb/print_file.c @@ -28,7 +28,7 @@ extern void bb_xprint_and_close_file(FILE *file) bb_xfflush_stdout(); /* Note: Do not use STDOUT_FILENO here, as this is a lib routine * and the calling code may have reassigned stdout. */ - if (bb_copyfd(fileno(file), fileno(stdout), 0) == -1) { + if (bb_copyfd_eof(fileno(file), fileno(stdout)) == -1) { /* bb_copyfd outputs any needed messages, so just die. */ exit(bb_default_error_retval); } |