Author: jgg
Date: 2001-02-23 06:41:55 GMT
Double slash bug
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: debindexfile.cc,v 1.2 2001/02/20 07:03:17 jgg Exp $
+// $Id: debindexfile.cc,v 1.3 2001/02/23 06:41:55 jgg Exp $
/* ######################################################################
Debian Specific sources.list types and the three sorts of Debian
/* ######################################################################
Debian Specific sources.list types and the three sorts of Debian
/* */
pkgSrcRecords::Parser *debSourcesIndex::CreateSrcParser() const
{
/* */
pkgSrcRecords::Parser *debSourcesIndex::CreateSrcParser() const
{
- string SourcesURI;
- if (Dist[Dist.size() - 1] == '/')
- SourcesURI = URI + Dist;
- else
- SourcesURI = URI + "dists/" + Dist + '/' + Section +
- "/source/";
-
- SourcesURI += "Sources";
- SourcesURI = URItoFileName(SourcesURI);
+ string SourcesURI = URItoFileName(IndexURI("Sources"));
return new debSrcRecordParser(_config->FindDir("Dir::State::lists") +
SourcesURI,this);
}
return new debSrcRecordParser(_config->FindDir("Dir::State::lists") +
SourcesURI,this);
}
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: srcrecords.cc,v 1.4 2001/02/20 07:03:17 jgg Exp $
+// $Id: srcrecords.cc,v 1.5 2001/02/23 06:41:55 jgg Exp $
/* ######################################################################
Source Package Records - Allows access to source package records
/* ######################################################################
Source Package Records - Allows access to source package records
- // Doesnt work without any source index files
+ // Doesn't work without any source index files
if (Count == 0)
{
_error->Error(_("Sorry, you must put some 'source' URIs"
if (Count == 0)
{
_error->Error(_("Sorry, you must put some 'source' URIs"
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: tagfile.cc,v 1.26 2001/02/20 07:03:17 jgg Exp $
+// $Id: tagfile.cc,v 1.27 2001/02/23 06:41:55 jgg Exp $
/* ######################################################################
Fast scanner for RFC-822 type header information
/* ######################################################################
Fast scanner for RFC-822 type header information
/* */
pkgTagFile::pkgTagFile(FileFd *pFd,unsigned long Size) : Fd(*pFd), Size(Size)
{
/* */
pkgTagFile::pkgTagFile(FileFd *pFd,unsigned long Size) : Fd(*pFd), Size(Size)
{
+ if (Fd.IsOpen() == false)
+ {
+ Buffer = 0;
+ Start = End = Buffer = 0;
+ Left = 0;
+ iOffset = 0;
+ return;
+ }
+
Buffer = new char[Size];
Start = End = Buffer;
Left = Fd.Size();
Buffer = new char[Size];
Start = End = Buffer;
Left = Fd.Size();
* Process the option string right. Closes: #86921
* Alfredo's no_proxy patch
* Documentation fixes. Closes: #87091
* Process the option string right. Closes: #86921
* Alfredo's no_proxy patch
* Documentation fixes. Closes: #87091
+ * JoeyH's double slash bug
-- Jason Gunthorpe <jgg@debian.org> Thu, 22 Feb 2001 00:39:15 -0500
-- Jason Gunthorpe <jgg@debian.org> Thu, 22 Feb 2001 00:39:15 -0500