diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:52:15 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:52:15 +0000 |
commit | 0dbb95d810308d8dd102fba0303eed657f9f1cd2 (patch) | |
tree | fb3edb5b731915851251f3d42d84e924d204cf5e /apt-pkg/acquire-worker.cc | |
parent | 42c90c422da346dbc90b9edc110855df181310ee (diff) |
Havocs _exit
Author: jgg
Date: 1998-12-14 06:54:41 GMT
Havocs _exit
Diffstat (limited to 'apt-pkg/acquire-worker.cc')
-rw-r--r-- | apt-pkg/acquire-worker.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apt-pkg/acquire-worker.cc b/apt-pkg/acquire-worker.cc index 28f8408b6..06a4460d1 100644 --- a/apt-pkg/acquire-worker.cc +++ b/apt-pkg/acquire-worker.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: acquire-worker.cc,v 1.15 1998/12/05 01:45:20 jgg Exp $ +// $Id: acquire-worker.cc,v 1.16 1998/12/14 06:54:41 jgg Exp $ /* ###################################################################### Acquire Worker @@ -136,7 +136,7 @@ bool pkgAcquire::Worker::Start() Args[1] = 0; execv(Args[0],(char **)Args); cerr << "Failed to exec method " << Args[0] << endl; - exit(100); + _exit(100); } // Fix up our FDs |