diff options
author | Hamish Guthrie <hcg@openwrt.org> | 2009-10-20 06:51:30 +0000 |
---|---|---|
committer | Hamish Guthrie <hcg@openwrt.org> | 2009-10-20 06:51:30 +0000 |
commit | 0996be22e7da68dbf3c91044b894edba5249ad4c (patch) | |
tree | daf87167b35d42e77d1f02fbe2d3238fa1202710 /package/busybox | |
parent | 6dd67d3672646d13a8f0828947f6ad4690292055 (diff) | |
download | upstream-0996be22e7da68dbf3c91044b894edba5249ad4c.tar.gz upstream-0996be22e7da68dbf3c91044b894edba5249ad4c.tar.bz2 upstream-0996be22e7da68dbf3c91044b894edba5249ad4c.zip |
[busybox] At boot, the startup process is executed in a non-interactive shell. Default behavior for a non-interactive shell is that SIGINT is processeld locally by the shell (and typically ignored), this runtime environment is inherited by children, hence Ctrl-C has no effect within a telnet session. This patch enables the correct behavior
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18088 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/busybox')
-rw-r--r-- | package/busybox/patches/902-telnetd_intr.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/package/busybox/patches/902-telnetd_intr.patch b/package/busybox/patches/902-telnetd_intr.patch new file mode 100644 index 0000000000..3b84fc4d3e --- /dev/null +++ b/package/busybox/patches/902-telnetd_intr.patch @@ -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(); |