summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Andres Klode <jak@debian.org>2011-04-16 11:02:47 +0200
committerJulian Andres Klode <jak@debian.org>2011-04-16 11:02:47 +0200
commita235ddf86a9cc5c3a8fade9084044229ff51a77f (patch)
tree9a715fb2bfd7c54c13db2cc8b5b05a672a810868
parentd1c60ab4356c195a66af09e07eb068093a4df6a9 (diff)
apt-pkg/acquire-item.cc: Only try to rename existing Release files (Closes: #622912)
-rw-r--r--apt-pkg/acquire-item.cc2
-rw-r--r--debian/changelog7
2 files changed, 8 insertions, 1 deletions
diff --git a/apt-pkg/acquire-item.cc b/apt-pkg/acquire-item.cc
index 1d651ba69..7b120d3ce 100644
--- a/apt-pkg/acquire-item.cc
+++ b/apt-pkg/acquire-item.cc
@@ -1504,7 +1504,7 @@ void pkgAcqMetaIndex::Failed(string Message,pkgAcquire::MethodConfig *Cnf)
/* Always move the meta index, even if gpgv failed. This ensures
* that PackageFile objects are correctly filled in */
- {
+ if (FileExists(DestFile)) {
string FinalFile = _config->FindDir("Dir::State::lists");
FinalFile += URItoFileName(RealURI);
/* InRelease files become Release files, otherwise
diff --git a/debian/changelog b/debian/changelog
index c2e2dc70d..857630dc6 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+apt (0.8.14.1) UNRELEASED; urgency=low
+
+ * apt-pkg/acquire-item.cc:
+ - Only try to rename existing Release files (Closes: #622912)
+
+ -- Julian Andres Klode <jak@debian.org> Sat, 16 Apr 2011 11:00:19 +0200
+
apt (0.8.14) unstable; urgency=low
[ Julian Andres Klode ]