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.
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user