From c724a69355c36ae803f328f3b99e552e4163713e Mon Sep 17 00:00:00 2001 From: Hamish Guthrie Date: Tue, 20 Oct 2009 06:51:30 +0000 Subject: [PATCH] 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 SVN-Revision: 18088 --- package/busybox/patches/902-telnetd_intr.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 package/busybox/patches/902-telnetd_intr.patch 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(); -- 2.30.2