]> git.saurik.com Git - apt.git/commitdiff
* apt-pkg/contrib/fileutl.cc:
authorDavid Kalnischkies <kalnischkies@gmail.com>
Sat, 4 Aug 2012 08:39:27 +0000 (10:39 +0200)
committerDavid Kalnischkies <kalnischkies@gmail.com>
Sat, 4 Aug 2012 08:39:27 +0000 (10:39 +0200)
  - remove _POSIX_SYNCHRONIZED_IO guard in FileFd::Sync() around fsync
    as this guard is only needed for fdatasync and not defined on hurd

apt-pkg/contrib/fileutl.cc
debian/changelog

index 119cd1974fbd28968291ba8eae6714deea548334..90e49cbfa3bb07d8409a1efc6c25471a5f781ffa 100644 (file)
@@ -1748,13 +1748,11 @@ bool FileFd::Close()
 /* */
 bool FileFd::Sync()
 {
-#ifdef _POSIX_SYNCHRONIZED_IO
    if (fsync(iFd) != 0)
    {
       Flags |= Fail;
       return _error->Errno("sync",_("Problem syncing the file"));
    }
-#endif
    return true;
 }
                                                                        /*}}}*/
index 2ad1134a8255dbb1341db260632e936a6b716bc2..5218ff0cb0fb561c12305dc38390b6c75ea0758c 100644 (file)
@@ -12,6 +12,11 @@ apt (0.9.7.4) UNRELEASED; urgency=low
       than also the fallback code as it breaks APT on hurd since 0.9.7.3
       as the fallback is now always used on non-linux (Closes: #683354)
 
+  [ David Kalnischkies ]
+  * apt-pkg/contrib/fileutl.cc:
+    - remove _POSIX_SYNCHRONIZED_IO guard in FileFd::Sync() around fsync
+      as this guard is only needed for fdatasync and not defined on hurd
+
  -- David Kalnischkies <kalnischkies@gmail.com>  Wed, 18 Jul 2012 11:45:57 +0200
 
 apt (0.9.7.3) UNRELEASED; urgency=low