diff options
author | Julian Andres Klode <jak@debian.org> | 2010-08-10 14:59:56 +0200 |
---|---|---|
committer | Julian Andres Klode <jak@debian.org> | 2010-08-10 14:59:56 +0200 |
commit | 22041bd2864b8d0b401b45dde9eda4003a11fec4 (patch) | |
tree | e3f15fbd4a6486f9048764c850d183feab21adc9 /methods/copy.cc | |
parent | fc81e8f2deff3b86738cad78aa491b1b514b3c59 (diff) |
apt-pkg, methods: Convert users of WriteEmpty to WriteAtomic.
Diffstat (limited to 'methods/copy.cc')
-rw-r--r-- | methods/copy.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/methods/copy.cc b/methods/copy.cc index 027b59f46..a6bb372a3 100644 --- a/methods/copy.cc +++ b/methods/copy.cc @@ -52,7 +52,7 @@ bool CopyMethod::Fetch(FetchItem *Itm) // See if the file exists FileFd From(File,FileFd::ReadOnly); - FileFd To(Itm->DestFile,FileFd::WriteEmpty); + FileFd To(Itm->DestFile,FileFd::WriteAtomic); To.EraseOnFailure(); if (_error->PendingError() == true) { |