aboutsummaryrefslogtreecommitdiff
path: root/libbb/print_file.c
diff options
context:
space:
mode:
authorbug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277>2003-11-21 22:24:57 +0000
committerbug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277>2003-11-21 22:24:57 +0000
commitd77eade56a2e7bf8bef3caafb69d2079c16b57d6 (patch)
treee949e5879a7083bac9e2da249363f9c613d0a409 /libbb/print_file.c
parent6ed9d590d5323fae0933b685181eb8dcd640844b (diff)
downloadbusybox-w32-d77eade56a2e7bf8bef3caafb69d2079c16b57d6.tar.gz
busybox-w32-d77eade56a2e7bf8bef3caafb69d2079c16b57d6.tar.bz2
busybox-w32-d77eade56a2e7bf8bef3caafb69d2079c16b57d6.zip
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. git-svn-id: svn://busybox.net/trunk/busybox@7984 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'libbb/print_file.c')
-rw-r--r--libbb/print_file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/print_file.c b/libbb/print_file.c
index 6d3667b60..161b398fa 100644
--- a/libbb/print_file.c
+++ b/libbb/print_file.c
@@ -28,7 +28,7 @@ extern void bb_xprint_and_close_file(FILE *file)
28 bb_xfflush_stdout(); 28 bb_xfflush_stdout();
29 /* Note: Do not use STDOUT_FILENO here, as this is a lib routine 29 /* Note: Do not use STDOUT_FILENO here, as this is a lib routine
30 * and the calling code may have reassigned stdout. */ 30 * and the calling code may have reassigned stdout. */
31 if (bb_copyfd(fileno(file), fileno(stdout), 0) == -1) { 31 if (bb_copyfd_eof(fileno(file), fileno(stdout)) == -1) {
32 /* bb_copyfd outputs any needed messages, so just die. */ 32 /* bb_copyfd outputs any needed messages, so just die. */
33 exit(bb_default_error_retval); 33 exit(bb_default_error_retval);
34 } 34 }