From: Michael Vogt Date: Wed, 14 Jun 2006 09:59:47 +0000 (+0200) Subject: * apt-pkg/acquire-item.cc: X-Git-Tag: 0.7.21~316^2 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/1790e0cf6a14ba2a3ccd8a8a926ca12a44d46d97?ds=sidebyside * apt-pkg/acquire-item.cc: - added missing chmod() calls, thanks to Bastian Blank --- diff --git a/apt-pkg/acquire-item.cc b/apt-pkg/acquire-item.cc index f22daaf71..a51b6f12d 100644 --- a/apt-pkg/acquire-item.cc +++ b/apt-pkg/acquire-item.cc @@ -540,6 +540,7 @@ void pkgAcqIndexDiffs::Done(string Message,unsigned long Size,string Md5Hash, << DestFile << " -> " << FinalFile << std::endl; } Rename(DestFile,FinalFile); + chmod(FinalFile.c_str(),0644); // see if there is more to download if(available_patches.size() > 0) { @@ -958,6 +959,7 @@ void pkgAcqMetaIndex::RetrievalDone(string Message) // Move it into position Rename(DestFile,FinalFile); } + chmod(FinalFile.c_str(),0644); DestFile = FinalFile; }