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. --- runit/svlogd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runit') diff --git a/runit/svlogd.c b/runit/svlogd.c index 467845122..8632ba6a5 100644 --- a/runit/svlogd.c +++ b/runit/svlogd.c @@ -800,7 +800,7 @@ int svlogd_main(int argc, char **argv) /* We cannot set NONBLOCK on fd #0 permanently - this setting * _isn't_ per-process! It is shared among all other processes * with the same stdin */ - fl_flag_0 = fcntl(0, F_GETFL, 0); + fl_flag_0 = fcntl(0, F_GETFL); blocked_sigset = &ss; sigemptyset(&ss); -- cgit v1.2.3