From de4d0fd50000d890661ef35b440dee09b57ac099 Mon Sep 17 00:00:00 2001 From: maxice8 Date: Wed, 25 Jul 2018 12:18:28 -0300 Subject: [PATCH] extundelete: fix FTBFS due to new e2fsprogs. --- srcpkgs/extundelete/patches/fix-ftbfs.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 srcpkgs/extundelete/patches/fix-ftbfs.patch diff --git a/srcpkgs/extundelete/patches/fix-ftbfs.patch b/srcpkgs/extundelete/patches/fix-ftbfs.patch new file mode 100644 index 00000000000..a4fc32a13f5 --- /dev/null +++ b/srcpkgs/extundelete/patches/fix-ftbfs.patch @@ -0,0 +1,12 @@ +--- src/insertionops.cc ++++ src/insertionops.cc +@@ -33,7 +33,7 @@ std::ostream& operator<<(std::ostream& o + os << "File flags: " << inode.i_flags << std::endl; + os << "File version (for NFS): " << inode.i_generation << std::endl; + os << "File ACL: " << inode.i_file_acl << std::endl; +- os << "Directory ACL: " << inode.i_dir_acl << std::endl; ++ os << "Directory ACL: " << inode.i_size_high << std::endl; + os << "Fragment address: " << inode.i_faddr << std::endl; + os << "Direct blocks: "; + for (int n = 0; n < EXT2_NDIR_BLOCKS; n++) +