[busybox] At boot, the startup process is executed in a non-interactive shell. Defaul...
authorhcg <hcg@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Tue, 20 Oct 2009 06:51:30 +0000 (06:51 +0000)
committerhcg <hcg@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Tue, 20 Oct 2009 06:51:30 +0000 (06:51 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18088 3c298f89-4303-0410-b956-a3cf2f4a3e73

package/busybox/patches/902-telnetd_intr.patch [new file with mode: 0644]

diff --git a/package/busybox/patches/902-telnetd_intr.patch b/package/busybox/patches/902-telnetd_intr.patch
new file mode 100644 (file)
index 0000000..3b84fc4
--- /dev/null
@@ -0,0 +1,12 @@
+diff --git a/networking/telnetd.c b/networking/telnetd.c
+index 2a0ace5..c281feb 100644
+--- a/networking/telnetd.c
++++ b/networking/telnetd.c
+@@ -308,6 +308,7 @@ make_new_session(
+       /* Restore default signal handling ASAP */
+       bb_signals((1 << SIGCHLD) + (1 << SIGPIPE), SIG_DFL);
++      signal(SIGINT, SIG_DFL);
+       /* Make new session and process group */
+       setsid();