summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--main.cxx1
2 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 92aad43b..811138ac 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2008-05-19 William Cohen <wcohen@redhat.com>
+
+ * main.cxx (setup_signals): Remove sa_restorer initialization.
+
2008-05-17 Frank Ch. Eigler <fche@elastic.org>
* elaborate.cxx (semantic_pass): Error on #probes=0, but not in
diff --git a/main.cxx b/main.cxx
index b53499b7..b7eac167 100644
--- a/main.cxx
+++ b/main.cxx
@@ -276,7 +276,6 @@ setup_signals (sighandler_t handler)
sigaddset (&sa.sa_mask, SIGTERM);
}
sa.sa_flags = 0;
- sa.sa_restorer = NULL;
sigaction (SIGHUP, &sa, NULL);
sigaction (SIGPIPE, &sa, NULL);