diff options
Diffstat (limited to 'sig.c')
-rw-r--r-- | sig.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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; |