openwrtv4/package/busybox/patches/902-telnetd_intr.patch
Alexandros C. Couloumbis da7c2e1d7d package/busybox: fix missing bit, refresh patches
SVN-Revision: 22660
2010-08-15 10:06:58 +00:00

10 lines
300 B
Diff

--- a/networking/telnetd.c
+++ b/networking/telnetd.c
@@ -313,6 +313,7 @@ make_new_session(
/* Restore default signal handling ASAP */
bb_signals((1 << SIGCHLD) + (1 << SIGPIPE), SIG_DFL);
+ signal(SIGINT, SIG_DFL);
if (ENABLE_FEATURE_UTMP) {
len_and_sockaddr *lsa = get_peer_lsa(sock);