diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:54:47 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:54:47 +0000 |
commit | 421c8d109932a2615b9327c8b69aad715d4b1162 (patch) | |
tree | 598bab85a1d54cda33ef75662b5287b2c47f7be0 /apt-pkg/sourcelist.cc | |
parent | eecf9bf7744f44f011234bccfc35218f80ae3526 (diff) |
Bug fixes
Author: jgg
Date: 1999-09-30 06:30:34 GMT
Bug fixes
Diffstat (limited to 'apt-pkg/sourcelist.cc')
-rw-r--r-- | apt-pkg/sourcelist.cc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/apt-pkg/sourcelist.cc b/apt-pkg/sourcelist.cc index 77f2acbc0..48d32f908 100644 --- a/apt-pkg/sourcelist.cc +++ b/apt-pkg/sourcelist.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: sourcelist.cc,v 1.15 1999/09/09 06:15:51 jgg Exp $ +// $Id: sourcelist.cc,v 1.16 1999/09/30 06:30:34 jgg Exp $ /* ###################################################################### List of Sources @@ -172,6 +172,8 @@ string pkgSourceList::Item::PackagesURI() const { if (Dist != "/") Res = URI + Dist; + else + Res = URI; } else Res = URI + "dists/" + Dist + '/' + Section + @@ -240,6 +242,8 @@ string pkgSourceList::Item::ReleaseURI() const { if (Dist != "/") Res = URI + Dist; + else + Res = URI; } else Res = URI + "dists/" + Dist + '/' + Section + |