aboutsummaryrefslogtreecommitdiff
path: root/libbb
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2004-03-27 10:02:48 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2004-03-27 10:02:48 +0000
commit79e940e10ce8e62cbbbba1f52e9e03e090fd51bc (patch)
tree372a280d63bab86ec9ffddc76ec28b27a7a1b3ee /libbb
parentd3f5f326fc058b244ce08af69c4c7ed0e97d84b8 (diff)
downloadbusybox-w32-79e940e10ce8e62cbbbba1f52e9e03e090fd51bc.tar.gz
busybox-w32-79e940e10ce8e62cbbbba1f52e9e03e090fd51bc.tar.bz2
busybox-w32-79e940e10ce8e62cbbbba1f52e9e03e090fd51bc.zip
s/fileno\(stdin\)/STDIN_FILENO/g
s/fileno\(stdout\)/STDOUT_FILENO/g git-svn-id: svn://busybox.net/trunk/busybox@8663 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'libbb')
-rw-r--r--libbb/dump.c2
-rw-r--r--libbb/print_file.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/libbb/dump.c b/libbb/dump.c
index f169da677..52a6c063b 100644
--- a/libbb/dump.c
+++ b/libbb/dump.c
@@ -311,7 +311,7 @@ static void do_skip(char *fname, int statok)
311 struct stat sbuf; 311 struct stat sbuf;
312 312
313 if (statok) { 313 if (statok) {
314 if (fstat(fileno(stdin), &sbuf)) { 314 if (fstat(STDIN_FILENO, &sbuf)) {
315 bb_perror_msg_and_die("%s", fname); 315 bb_perror_msg_and_die("%s", fname);
316 } 316 }
317 if ((!(S_ISCHR(sbuf.st_mode) || 317 if ((!(S_ISCHR(sbuf.st_mode) ||
diff --git a/libbb/print_file.c b/libbb/print_file.c
index bd7108d2f..8f85cb4d6 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_eof(fileno(file), fileno(stdout)) == -1) { 31 if (bb_copyfd_eof(fileno(file), STDOUT_FILENO) == -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 }