diff --git a/NEWS b/NEWS index a8f0d5c4..b1e6a21f 100644 --- a/NEWS +++ b/NEWS @@ -2,6 +2,7 @@ procps-3.2.4 --> procps-3.2.5 ps: security labels can contain any printable ASCII top: help and version message on stdout, with exit(0) #283541 +ps: SIGTSTP from ^Z shouldn't print bug email address procps-3.2.3 --> procps-3.2.4 diff --git a/ps/display.c b/ps/display.c index 0b46f89b..f9c8e23c 100644 --- a/ps/display.c +++ b/ps/display.c @@ -563,6 +563,7 @@ int main(int argc, char *argv[]){ sigaction(i,&sa,NULL); case 0: case SIGINT: /* ^C */ + case SIGTSTP: /* ^Z */ case SIGQUIT: /* ^\ */ case SIGPROF: /* profiling */ case SIGKILL: /* can not catch */