diff options
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/cat.c | 2 |
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; |