aboutsummaryrefslogtreecommitdiff
path: root/coreutils/cat.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 /coreutils/cat.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 'coreutils/cat.c')
-rw-r--r--coreutils/cat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/cat.c b/coreutils/cat.c
index 865275767..62af6c5d5 100644
--- a/coreutils/cat.c
+++ b/coreutils/cat.c
@@ -54,7 +54,7 @@ extern int cat_main(int argc, char **argv)
54 54
55 do { 55 do {
56 if ((f = bb_wfopen_input(*argv)) != NULL) { 56 if ((f = bb_wfopen_input(*argv)) != NULL) {
57 int r = bb_copyfd(fileno(f), STDOUT_FILENO, 0); 57 int r = bb_copyfd_eof(fileno(f), STDOUT_FILENO);
58 bb_fclose_nonstdin(f); 58 bb_fclose_nonstdin(f);
59 if (r >= 0) { 59 if (r >= 0) {
60 continue; 60 continue;