From d37f22225b4d10b84bbc4f6cee2e26d9f9b80fac Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Sun, 19 Aug 2007 13:42:08 +0000 Subject: 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. --- libbb/xfuncs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libbb/xfuncs.c') 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) // Turn on nonblocking I/O on a fd int ndelay_on(int fd) { - return fcntl(fd, F_SETFL, fcntl(fd,F_GETFL,0) | O_NONBLOCK); + return fcntl(fd, F_SETFL, fcntl(fd,F_GETFL) | O_NONBLOCK); } int ndelay_off(int fd) { - return fcntl(fd, F_SETFL, fcntl(fd,F_GETFL,0) & ~O_NONBLOCK); + return fcntl(fd, F_SETFL, fcntl(fd,F_GETFL) & ~O_NONBLOCK); } void xdup2(int from, int to) -- cgit v1.2.3