aboutsummaryrefslogtreecommitdiff
path: root/libbb
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-08-19 13:42:08 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-08-19 13:42:08 +0000
commitd37f22225b4d10b84bbc4f6cee2e26d9f9b80fac (patch)
tree732f39f3a15dcb56986ffd3900ab2fe3c46d0338 /libbb
parentb9c02dd791041a4c3b87cb38354268893d739bd0 (diff)
downloadbusybox-w32-d37f22225b4d10b84bbc4f6cee2e26d9f9b80fac.tar.gz
busybox-w32-d37f22225b4d10b84bbc4f6cee2e26d9f9b80fac.tar.bz2
busybox-w32-d37f22225b4d10b84bbc4f6cee2e26d9f9b80fac.zip
libbb,crond,lash: fix getopt32 (don't know how it managed to slip through)
*: fcntl(fd, F_GETFL) doesn't require third parameter at all.
Diffstat (limited to 'libbb')
-rw-r--r--libbb/xfuncs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libbb/xfuncs.c b/libbb/xfuncs.c
index 5a1090eaf..fa9fc10d6 100644
--- a/libbb/xfuncs.c
+++ b/libbb/xfuncs.c
@@ -161,12 +161,12 @@ void xunlink(const char *pathname)
161// Turn on nonblocking I/O on a fd 161// Turn on nonblocking I/O on a fd
162int ndelay_on(int fd) 162int ndelay_on(int fd)
163{ 163{
164 return fcntl(fd, F_SETFL, fcntl(fd,F_GETFL,0) | O_NONBLOCK); 164 return fcntl(fd, F_SETFL, fcntl(fd,F_GETFL) | O_NONBLOCK);
165} 165}
166 166
167int ndelay_off(int fd) 167int ndelay_off(int fd)
168{ 168{
169 return fcntl(fd, F_SETFL, fcntl(fd,F_GETFL,0) & ~O_NONBLOCK); 169 return fcntl(fd, F_SETFL, fcntl(fd,F_GETFL) & ~O_NONBLOCK);
170} 170}
171 171
172void xdup2(int from, int to) 172void xdup2(int from, int to)