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 /methods/file.cc | |
parent | 7a658e661330d4832acdf221966f351408f99b0f (diff) |
Local file fixes
Author: jgg
Date: 1998-11-14 01:39:41 GMT
Local file fixes
Diffstat (limited to 'methods/file.cc')
-rw-r--r-- | methods/file.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/methods/file.cc b/methods/file.cc index 0e5e2ebef..1b3183f05 100644 --- a/methods/file.cc +++ b/methods/file.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: file.cc,v 1.5 1998/11/01 05:27:41 jgg Exp $ +// $Id: file.cc,v 1.6 1998/11/14 01:39:49 jgg Exp $ /* ###################################################################### File URI method for APT @@ -26,7 +26,7 @@ class FileMethod : public pkgAcqMethod public: - FileMethod() : pkgAcqMethod("1.0",SingleInstance) {}; + FileMethod() : pkgAcqMethod("1.0",SingleInstance | LocalOnly) {}; }; // FileMethod::Fetch - Fetch a file /*{{{*/ |