aboutsummaryrefslogtreecommitdiff
path: root/patches/tftp_timeout_multicast.diff
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 /patches/tftp_timeout_multicast.diff
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 'patches/tftp_timeout_multicast.diff')
-rw-r--r--patches/tftp_timeout_multicast.diff2
1 files changed, 1 insertions, 1 deletions
diff --git a/patches/tftp_timeout_multicast.diff b/patches/tftp_timeout_multicast.diff
index 0f09d4a04..ca431fc60 100644
--- a/patches/tftp_timeout_multicast.diff
+++ b/patches/tftp_timeout_multicast.diff
@@ -1031,7 +1031,7 @@ diff -u -r1.25 tftp.c
1031+ result = tftp(cmd, host, remotefile, fd, port, &option); 1031+ result = tftp(cmd, host, remotefile, fd, port, &option);
1032 1032
1033 #ifdef CONFIG_FEATURE_CLEAN_UP 1033 #ifdef CONFIG_FEATURE_CLEAN_UP
1034 if (!(fd == fileno(stdout) || fd == fileno(stdin))) { 1034 if (!(fd == STDOUT_FILENO || fd == STDIN_FILENO)) {
1035@@ -582,3 +980,18 @@ 1035@@ -582,3 +980,18 @@
1036 #endif 1036 #endif
1037 return(result); 1037 return(result);