diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-03-19 19:38:46 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-03-19 19:38:46 +0000 |
commit | cf7cf622046b0e1a2817e1da4aa8bc6f513b0153 (patch) | |
tree | 30bc88b5a107bfe6d5f751ca722ed5a49a0b5fd8 /networking/tcpudp.c | |
parent | 0764a7f72d7e5490b85dd0816bef8e56f6216d92 (diff) | |
download | busybox-w32-cf7cf622046b0e1a2817e1da4aa8bc6f513b0153.tar.gz busybox-w32-cf7cf622046b0e1a2817e1da4aa8bc6f513b0153.tar.bz2 busybox-w32-cf7cf622046b0e1a2817e1da4aa8bc6f513b0153.zip |
*: s/BB_SIGS_FATAL/BB_FATAL_SIGS/ (latter proved easier to remember)
top: fix "top </dev/null" case (by Cristian Ionescu-Idbohrn)
Diffstat (limited to 'networking/tcpudp.c')
-rw-r--r-- | networking/tcpudp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/tcpudp.c b/networking/tcpudp.c index f97787497..5da4de505 100644 --- a/networking/tcpudp.c +++ b/networking/tcpudp.c | |||
@@ -264,7 +264,7 @@ int tcpudpsvd_main(int argc ATTRIBUTE_UNUSED, char **argv) | |||
264 | 264 | ||
265 | sig_block(SIGCHLD); | 265 | sig_block(SIGCHLD); |
266 | signal(SIGCHLD, sig_child_handler); | 266 | signal(SIGCHLD, sig_child_handler); |
267 | bb_signals(BB_SIGS_FATAL, sig_term_handler); | 267 | bb_signals(BB_FATAL_SIGS, sig_term_handler); |
268 | signal(SIGPIPE, SIG_IGN); | 268 | signal(SIGPIPE, SIG_IGN); |
269 | 269 | ||
270 | if (max_per_host) | 270 | if (max_per_host) |