aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
author"Vladimir N. Oleynik" <dzo@simtreas.ru>2005-12-13 13:24:23 +0000
committer"Vladimir N. Oleynik" <dzo@simtreas.ru>2005-12-13 13:24:23 +0000
commite6d88ea2a1acf57e3dae35aa19eeb17f4be5ed8b (patch)
treeb7c56acb85dbcb3a4347801344ce06c81fedb7dd /shell
parente0b877850679653bda433d7ca22063988846ca07 (diff)
downloadbusybox-e6d88ea2a1acf57e3dae35aa19eeb17f4be5ed8b.tar.gz
remove sigsetmask, noticed by Bernhard
Diffstat (limited to 'shell')
-rw-r--r--shell/ash.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/shell/ash.c b/shell/ash.c
index 6edc48421..171d5ede7 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -2543,7 +2543,11 @@ onint(void) {
int i;
intpending = 0;
+#if 0
+ /* comment by vodz: its strange for me, this programm don`t use other
+ signal block */
sigsetmask(0);
+#endif
i = EXSIG;
if (gotsig[SIGINT - 1] && !trap[SIGINT]) {
if (!(rootshell && iflag)) {