aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tshark.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tshark.c b/tshark.c
index 20b62647f5..b03372a1c9 100644
--- a/tshark.c
+++ b/tshark.c
@@ -1748,7 +1748,7 @@ capture(void)
and exit. */
action.sa_handler = capture_cleanup;
action.sa_flags = 0;
- action.sa_mask = 0;
+ sigemptyset(&action.sa_mask);
sigaction(SIGTERM, &action, NULL);
sigaction(SIGINT, &action, NULL);
sigaction(SIGHUP, NULL, &oldaction);
@@ -1760,7 +1760,7 @@ capture(void)
quiet mode, report the number of packets we've captured. */
action.sa_handler = report_counts_siginfo;
action.sa_flags = 0;
- action.sa_mask = 0;
+ sigemptyset(&action.sa_mask);
sigaction(SIGINFO, &action, NULL);
#endif /* SIGINFO */
#endif /* _WIN32 */