aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
Diffstat (limited to 'shell')
-rw-r--r--shell/ash.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/shell/ash.c b/shell/ash.c
index ab935e72a..d6e44633a 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -3301,6 +3301,8 @@ setsignal(int signo)
3301 char cur_act, new_act; 3301 char cur_act, new_act;
3302 struct sigaction act; 3302 struct sigaction act;
3303 3303
3304 if (ENABLE_PLATFORM_MINGW32)
3305 return;
3304 t = trap[signo]; 3306 t = trap[signo];
3305 new_act = S_DFL; 3307 new_act = S_DFL;
3306 if (t != NULL) { /* trap for this sig is set */ 3308 if (t != NULL) { /* trap for this sig is set */