Don't use SA_RESETHAND here. We gain nothing.

Suggested by: bde
This commit is contained in:
Brian Somers 2001-07-31 15:29:50 +00:00
parent 65cacad456
commit a63c2b97d7
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=80733

View file

@ -603,7 +603,7 @@ main(int argc, char **argv)
memset(&act, '\0', sizeof act);
act.sa_handler = Farewell;
act.sa_flags = SA_RESETHAND;
act.sa_flags = 0;
sigemptyset(&act.sa_mask);
sigaction(SIGHUP, &act, NULL);
sigaction(SIGINT, &act, NULL);