Sisyphus repository
Last update: 1 october 2023 | SRPMs: 18631 | Visits: 37547923
en ru br
ALT Linux repos
S:3.4-alt9
5.0: 3.4-alt1
4.1: 3.4-alt1
4.0: 3.4-alt1
3.0: 3.2-alt1

Group :: Archiving/Backup
RPM: pax

 Main   Changelog   Spec   Patches   Sources   Download   Gear   Bugs and FR  Repocop 

Patch: pax-3.4-alt-gcc8.patch
Download


diff --git a/pax/src/pax.c b/pax/src/pax.c
index 20817d1..b7c1bcf 100644
--- a/pax/src/pax.c
+++ b/pax/src/pax.c
@@ -403,27 +403,27 @@ gen_init (void)
 
   if ((sigaction (SIGHUP, &n_hand, &o_hand) < 0) &&
       (o_hand.sa_handler == SIG_IGN) &&
-      (sigaction (SIGHUP, &o_hand, &o_hand) < 0))
+      (sigaction (SIGHUP, &o_hand, NULL) < 0))
     goto out;
 
   if ((sigaction (SIGTERM, &n_hand, &o_hand) < 0) &&
       (o_hand.sa_handler == SIG_IGN) &&
-      (sigaction (SIGTERM, &o_hand, &o_hand) < 0))
+      (sigaction (SIGTERM, &o_hand, NULL) < 0))
     goto out;
 
   if ((sigaction (SIGINT, &n_hand, &o_hand) < 0) &&
       (o_hand.sa_handler == SIG_IGN) &&
-      (sigaction (SIGINT, &o_hand, &o_hand) < 0))
+      (sigaction (SIGINT, &o_hand, NULL) < 0))
     goto out;
 
   if ((sigaction (SIGQUIT, &n_hand, &o_hand) < 0) &&
       (o_hand.sa_handler == SIG_IGN) &&
-      (sigaction (SIGQUIT, &o_hand, &o_hand) < 0))
+      (sigaction (SIGQUIT, &o_hand, NULL) < 0))
     goto out;
 
   if ((sigaction (SIGXCPU, &n_hand, &o_hand) < 0) &&
       (o_hand.sa_handler == SIG_IGN) &&
-      (sigaction (SIGXCPU, &o_hand, &o_hand) < 0))
+      (sigaction (SIGXCPU, &o_hand, NULL) < 0))
     goto out;
 
   n_hand.sa_handler = SIG_IGN;
 
design & coding: Vladimir Lettiev aka crux © 2004-2005, Andrew Avramenko aka liks © 2007-2008
current maintainer: Michael Shigorin