diff options
author | Michael Vogt <egon@tas> | 2008-11-12 21:17:34 +0100 |
---|---|---|
committer | Michael Vogt <egon@tas> | 2008-11-12 21:17:34 +0100 |
commit | e306ec4728557675680115af4470d16159f22ab1 (patch) | |
tree | 6fdc176cd10c65934cee5e880823f0b07ce93cf3 /apt-pkg | |
parent | d9ec0faca41c96df02bac493549af64c5e6a8bc2 (diff) |
fix another typo
Diffstat (limited to 'apt-pkg')
-rw-r--r-- | apt-pkg/deb/dpkgpm.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/deb/dpkgpm.cc b/apt-pkg/deb/dpkgpm.cc index 5349a7ef2..686cbc6ee 100644 --- a/apt-pkg/deb/dpkgpm.cc +++ b/apt-pkg/deb/dpkgpm.cc @@ -892,7 +892,7 @@ bool pkgDPkgPM::Go(int OutStatusFd) // Restore sig int/quit signal(SIGQUIT,old_SIGQUIT); signal(SIGINT,old_SIGINT); - signal(SIGINT,old_SIGHUP); + signal(SIGHUP,old_SIGHUP); return _error->Errno("waitpid","Couldn't wait for subprocess"); } |