mirror of
https://github.com/hak5/wifipineapple-openwrt.git
synced 2025-10-29 16:57:19 +00:00
[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
This commit is contained in:
parent
6dd67d3672
commit
0996be22e7
12
package/busybox/patches/902-telnetd_intr.patch
Normal file
12
package/busybox/patches/902-telnetd_intr.patch
Normal file
@ -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();
|
||||
Loading…
x
Reference in New Issue
Block a user