diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:55:15 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:55:15 +0000 |
commit | ffe9323a38b1b0150149cd38cd6ced9d34eee939 (patch) | |
tree | d519d223250e3b331ac310f51b528c74b60468f8 /methods/http.cc | |
parent | 10bb1f5f242d8a475b0c4395d71214353355f304 (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/http.cc')
-rw-r--r-- | methods/http.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/methods/http.cc b/methods/http.cc index 34f2f1af5..456e7146a 100644 --- a/methods/http.cc +++ b/methods/http.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: http.cc,v 1.39 1999/10/18 03:18:40 jgg Exp $ +// $Id: http.cc,v 1.40 1999/11/29 23:20:27 jgg Exp $ /* ###################################################################### HTTP Aquire Method - This is the HTTP aquire method for APT. @@ -910,7 +910,7 @@ int HttpMethod::DealWithHeaders(FetchResult &Res,ServerState *Srv) void HttpMethod::SigTerm(int) { if (FailFd == -1) - exit(100); + _exit(100); close(FailFd); // Timestamp @@ -919,7 +919,7 @@ void HttpMethod::SigTerm(int) UBuf.modtime = FailTime; utime(FailFile.c_str(),&UBuf); - exit(100); + _exit(100); } /*}}}*/ // HttpMethod::Fetch - Fetch an item /*{{{*/ |