aboutsummaryrefslogtreecommitdiff
path: root/sig.c
diff options
context:
space:
mode:
Diffstat (limited to 'sig.c')
-rw-r--r--sig.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sig.c b/sig.c
index 7e7486980253..d2b77e77af1a 100644
--- a/sig.c
+++ b/sig.c
@@ -1,4 +1,4 @@
-/* $NetBSD: sig.c,v 1.27 2023/02/03 19:47:38 christos Exp $ */
+/* $NetBSD: sig.c,v 1.28 2024/12/18 15:38:52 christos Exp $ */
/*-
* Copyright (c) 1992, 1993
@@ -37,7 +37,7 @@
#if 0
static char sccsid[] = "@(#)sig.c 8.1 (Berkeley) 6/4/93";
#else
-__RCSID("$NetBSD: sig.c,v 1.27 2023/02/03 19:47:38 christos Exp $");
+__RCSID("$NetBSD: sig.c,v 1.28 2024/12/18 15:38:52 christos Exp $");
#endif
#endif /* not lint && not SCCSID */
@@ -167,7 +167,7 @@ sig_set(EditLine *el)
struct sigaction osa, nsa;
nsa.sa_handler = sig_handler;
- nsa.sa_flags = 0;
+ nsa.sa_flags = SA_ONSTACK;
sigemptyset(&nsa.sa_mask);
sel = el;