summaryrefslogtreecommitdiff
path: root/apt-pkg/pkgcachegen.cc
diff options
context:
space:
mode:
authorArch Librarian <arch@canonical.com>2004-09-20 16:55:37 +0000
committerArch Librarian <arch@canonical.com>2004-09-20 16:55:37 +0000
commit7ef724464cfe431862e0731327a3a131505fa38d (patch)
treea979b8372399fddcbdfbaba14b1e5c9e5060cb0f /apt-pkg/pkgcachegen.cc
parent5af32db6607ca018936285fd19a776bd10a418f0 (diff)
Fixed ftp resume
Author: jgg Date: 2000-01-10 03:44:54 GMT Fixed ftp resume
Diffstat (limited to 'apt-pkg/pkgcachegen.cc')
-rw-r--r--apt-pkg/pkgcachegen.cc13
1 files changed, 11 insertions, 2 deletions
diff --git a/apt-pkg/pkgcachegen.cc b/apt-pkg/pkgcachegen.cc
index 4033dc540..404ef652a 100644
--- a/apt-pkg/pkgcachegen.cc
+++ b/apt-pkg/pkgcachegen.cc
@@ -1,6 +1,6 @@
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: pkgcachegen.cc,v 1.43 1999/12/10 23:40:29 jgg Exp $
+// $Id: pkgcachegen.cc,v 1.44 2000/01/10 03:44:54 jgg Exp $
/* ######################################################################
Package Cache Generator - Generator for the cache structure.
@@ -26,7 +26,7 @@
#include <sys/stat.h>
#include <unistd.h>
#include <errno.h>
-
+#include <stdio.h>
#include <system.h>
/*}}}*/
@@ -470,6 +470,15 @@ bool pkgSrcCacheCheck(pkgSourceList &List)
struct stat Buf;
if (stat(File.c_str(),&Buf) != 0)
{
+ // Old format file name.. rename it
+ if (File[0] == '_' && stat(File.c_str()+1,&Buf) == 0)
+ {
+ if (rename(File.c_str()+1,File.c_str()) != 0)
+ return _error->Errno("rename","Failed to rename %s to %s",
+ File.c_str()+1,File.c_str());
+ continue;
+ }
+
_error->WarningE("stat","Couldn't stat source package list '%s' (%s)",
I->PackagesInfo().c_str(),File.c_str());
Missing++;