diff options
author | Conrad Kostecki <conrad@kostecki.com> | 2018-07-07 23:52:01 +0200 |
---|---|---|
committer | Tony Vroon <chainsaw@gentoo.org> | 2018-07-11 11:53:21 +0100 |
commit | 75bb550eb671ab4ef8479b8106c2d9e173da0b2d (patch) | |
tree | 0cdabddec2723a494f7680bb82f1474c520ade5e /sys-fs/extundelete/files | |
parent | net-im/transwhat: New package (diff) | |
download | gentoo-75bb550eb671ab4ef8479b8106c2d9e173da0b2d.tar.gz gentoo-75bb550eb671ab4ef8479b8106c2d9e173da0b2d.tar.bz2 gentoo-75bb550eb671ab4ef8479b8106c2d9e173da0b2d.zip |
sys-fs/extundelete: fix build with newer e2fsprogs version
Closes: https://bugs.gentoo.org/652688
Package-Manager: Portage-2.3.41, Repoman-2.3.9
Closes: https://github.com/gentoo/gentoo/pull/9094
Closes: https://bugs.gentoo.org/652688
Diffstat (limited to 'sys-fs/extundelete/files')
-rw-r--r-- | sys-fs/extundelete/files/extundelete-0.2.4-e2fsprogs.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sys-fs/extundelete/files/extundelete-0.2.4-e2fsprogs.patch b/sys-fs/extundelete/files/extundelete-0.2.4-e2fsprogs.patch new file mode 100644 index 000000000000..ea0da14f1650 --- /dev/null +++ b/sys-fs/extundelete/files/extundelete-0.2.4-e2fsprogs.patch @@ -0,0 +1,11 @@ +--- a/src/insertionops.cc 2012-12-30 18:23:32.000000000 +0100 ++++ b/src/insertionops.cc 2018-05-07 22:58:13.065868723 +0200 +@@ -33,7 +33,7 @@ + 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++) |