diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:51:29 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:51:29 +0000 |
commit | e331f6edcb86e6acb2888ec0721e55bf43e10bc2 (patch) | |
tree | c63e19a105602099e4cdd3cd2235415081f26193 /apt-pkg/acquire-worker.cc | |
parent | 7a658e661330d4832acdf221966f351408f99b0f (diff) |
Local file fixes
Author: jgg
Date: 1998-11-14 01:39:41 GMT
Local file fixes
Diffstat (limited to 'apt-pkg/acquire-worker.cc')
-rw-r--r-- | apt-pkg/acquire-worker.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apt-pkg/acquire-worker.cc b/apt-pkg/acquire-worker.cc index 718944d73..fa349a56a 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.11 1998/11/09 01:09:23 jgg Exp $ +// $Id: acquire-worker.cc,v 1.12 1998/11/14 01:39:44 jgg Exp $ /* ###################################################################### Acquire Worker @@ -307,6 +307,7 @@ bool pkgAcquire::Worker::Capabilities(string Message) Config->PreScan = StringToBool(LookupTag(Message,"Pre-Scan"),false); Config->Pipeline = StringToBool(LookupTag(Message,"Pipeline"),false); Config->SendConfig = StringToBool(LookupTag(Message,"Send-Config"),false); + Config->LocalOnly = StringToBool(LookupTag(Message,"Local-Only"),false); // Some debug text if (Debug == true) |