summaryrefslogtreecommitdiff
path: root/methods/ftp.cc
diff options
context:
space:
mode:
authorArch Librarian <arch@canonical.com>2004-09-20 16:55:15 +0000
committerArch Librarian <arch@canonical.com>2004-09-20 16:55:15 +0000
commitffe9323a38b1b0150149cd38cd6ced9d34eee939 (patch)
treed519d223250e3b331ac310f51b528c74b60468f8 /methods/ftp.cc
parent10bb1f5f242d8a475b0c4395d71214353355f304 (diff)
Use _exit in the signal handlers
Author: jgg Date: 1999-11-29 23:20:27 GMT Use _exit in the signal handlers
Diffstat (limited to 'methods/ftp.cc')
-rw-r--r--methods/ftp.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/methods/ftp.cc b/methods/ftp.cc
index 6f4b00307..b9f708d80 100644
--- a/methods/ftp.cc
+++ b/methods/ftp.cc
@@ -1,6 +1,6 @@
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: ftp.cc,v 1.15 1999/09/05 05:41:41 jgg Exp $
+// $Id: ftp.cc,v 1.16 1999/11/29 23:20:27 jgg Exp $
/* ######################################################################
HTTP Aquire Method - This is the FTP aquire method for APT.
@@ -745,7 +745,7 @@ FtpMethod::FtpMethod() : pkgAcqMethod("1.0",SendConfig)
void FtpMethod::SigTerm(int)
{
if (FailFd == -1)
- exit(100);
+ _exit(100);
close(FailFd);
// Timestamp
@@ -754,7 +754,7 @@ void FtpMethod::SigTerm(int)
UBuf.modtime = FailTime;
utime(FailFile.c_str(),&UBuf);
- exit(100);
+ _exit(100);
}
/*}}}*/
// FtpMethod::Configuration - Handle a configuration message /*{{{*/