diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:52:35 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:52:35 +0000 |
commit | 7d8afa391c5cd04e797a2b41fe3b946631254995 (patch) | |
tree | 3b2eeb405474531270951c1c17ae6bba016dbd16 /apt-pkg/acquire-worker.cc | |
parent | f7a08e33bc039e967bf38c2ef78cbb7cd7bb658d (diff) |
Retry support
Author: jgg
Date: 1999-01-30 08:08:54 GMT
Retry support
Diffstat (limited to 'apt-pkg/acquire-worker.cc')
-rw-r--r-- | apt-pkg/acquire-worker.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/apt-pkg/acquire-worker.cc b/apt-pkg/acquire-worker.cc index 1ac6e8528..099a43e2e 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.18 1999/01/27 02:48:52 jgg Exp $ +// $Id: acquire-worker.cc,v 1.19 1999/01/30 08:08:54 jgg Exp $ /* ###################################################################### Acquire Worker @@ -281,12 +281,12 @@ bool pkgAcquire::Worker::RunMessages() pkgAcquire::Item *Owner = Itm->Owner; pkgAcquire::ItemDesc Desc = *Itm; OwnerQ->ItemDone(Itm); - Owner->Failed(Message); + Owner->Failed(Message,Config); ItemDone(); - + if (Log != 0) Log->Fail(Desc); - + break; } |