Skip to content

Commit

Permalink
udev: remove duplicate flag
Browse files Browse the repository at this point in the history
One SA_RESTART is enough. Fall out from
e28c7cd
  • Loading branch information
phomes committed Dec 5, 2016
1 parent 95977da commit 11754a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/udev/udevadm-monitor.c
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ static int adm_monitor(struct udev *udev, int argc, char *argv[]) {

/* set signal handlers */
act.sa_handler = sig_handler;
act.sa_flags = SA_RESTART|SA_RESTART;
act.sa_flags = SA_RESTART;
sigaction(SIGINT, &act, NULL);
sigaction(SIGTERM, &act, NULL);
sigemptyset(&mask);
Expand Down

0 comments on commit 11754a3

Please sign in to comment.