mirror of
https://github.com/sudo-project/sudo.git
synced 2025-08-29 05:17:54 +00:00
Don't forward SIGINFO to the child when it is send by the kernel
(not another user process). This is consistent with the handling of other keyboard-generated signals such as SIGINT, SIGQUIT and SIGTSTP. Bug #796
This commit is contained in:
parent
0d31a1c302
commit
c3d098254d
@ -134,6 +134,9 @@ signal_cb_nopty(int signo, int what, void *v)
|
||||
sudo_ev_loopexit(ec->evbase);
|
||||
}
|
||||
debug_return;
|
||||
#ifdef SIGINFO
|
||||
case SIGINFO:
|
||||
#endif
|
||||
case SIGINT:
|
||||
case SIGQUIT:
|
||||
case SIGTSTP:
|
||||
|
Loading…
x
Reference in New Issue
Block a user