aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorvodz <vodz@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-12-13 13:24:23 +0000
committervodz <vodz@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-12-13 13:24:23 +0000
commite2e8f51447f3c9f04bc9bea3c57fc08216829c13 (patch)
treeb7c56acb85dbcb3a4347801344ce06c81fedb7dd /shell
parent75a5ee36c276ffcbe037286bfcbbcd9b7ec4a902 (diff)
downloadbusybox-w32-e2e8f51447f3c9f04bc9bea3c57fc08216829c13.tar.gz
busybox-w32-e2e8f51447f3c9f04bc9bea3c57fc08216829c13.tar.bz2
busybox-w32-e2e8f51447f3c9f04bc9bea3c57fc08216829c13.zip
remove sigsetmask, noticed by Bernhard
git-svn-id: svn://busybox.net/trunk/busybox@12872 69ca8d6d-28ef-0310-b511-8ec308f3f277
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) {
2543 int i; 2543 int i;
2544 2544
2545 intpending = 0; 2545 intpending = 0;
2546#if 0
2547 /* comment by vodz: its strange for me, this programm don`t use other
2548 signal block */
2546 sigsetmask(0); 2549 sigsetmask(0);
2550#endif
2547 i = EXSIG; 2551 i = EXSIG;
2548 if (gotsig[SIGINT - 1] && !trap[SIGINT]) { 2552 if (gotsig[SIGINT - 1] && !trap[SIGINT]) {
2549 if (!(rootshell && iflag)) { 2553 if (!(rootshell && iflag)) {