diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-08-19 13:42:08 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-08-19 13:42:08 +0000 |
commit | d37f22225b4d10b84bbc4f6cee2e26d9f9b80fac (patch) | |
tree | 732f39f3a15dcb56986ffd3900ab2fe3c46d0338 /runit | |
parent | b9c02dd791041a4c3b87cb38354268893d739bd0 (diff) | |
download | busybox-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 'runit')
-rw-r--r-- | runit/svlogd.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) | |||
800 | /* We cannot set NONBLOCK on fd #0 permanently - this setting | 800 | /* We cannot set NONBLOCK on fd #0 permanently - this setting |
801 | * _isn't_ per-process! It is shared among all other processes | 801 | * _isn't_ per-process! It is shared among all other processes |
802 | * with the same stdin */ | 802 | * with the same stdin */ |
803 | fl_flag_0 = fcntl(0, F_GETFL, 0); | 803 | fl_flag_0 = fcntl(0, F_GETFL); |
804 | 804 | ||
805 | blocked_sigset = &ss; | 805 | blocked_sigset = &ss; |
806 | sigemptyset(&ss); | 806 | sigemptyset(&ss); |