summaryrefslogtreecommitdiff
path: root/apt-pkg/contrib/fileutl.cc
diff options
context:
space:
mode:
authorJulian Andres Klode <julian.klode@canonical.com>2021-03-01 22:29:12 +0100
committerJulian Andres Klode <julian.klode@canonical.com>2021-03-01 22:29:12 +0100
commit757304ce49f7b9335132be53e8162cce89e85033 (patch)
tree59f317fb7fabbfff52fdd041c614f9156fdc74c7 /apt-pkg/contrib/fileutl.cc
parentdb391379e175aa742e390aab24dcf224a8a97e88 (diff)
parent16b905aabc9b8700b937dd1541d52ea0df2f3a0e (diff)
Merge tag '2.2.1'
apt Debian release 2.2.1
Diffstat (limited to 'apt-pkg/contrib/fileutl.cc')
-rw-r--r--apt-pkg/contrib/fileutl.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/apt-pkg/contrib/fileutl.cc b/apt-pkg/contrib/fileutl.cc
index 091def3d4..eb5dc859d 100644
--- a/apt-pkg/contrib/fileutl.cc
+++ b/apt-pkg/contrib/fileutl.cc
@@ -140,10 +140,6 @@ bool RunScripts(const char *Cnf)
return _error->Errno("waitpid","Couldn't wait for subprocess");
}
- // Restore sig int/quit
- signal(SIGQUIT,SIG_DFL);
- signal(SIGINT,SIG_DFL);
-
// Check for an error code.
if (WIFEXITED(Status) == 0 || WEXITSTATUS(Status) != 0)
{