Added a patch (fix_ftbfs.patch) to fix FTBFS with new e2fsprogs OBS-URL: https://build.opensuse.org/request/show/613704 OBS-URL: https://build.opensuse.org/package/show/filesystems/extundelete?expand=0&rev=6
14 lines
683 B
Diff
14 lines
683 B
Diff
Index: extundelete/src/insertionops.cc
|
|
===================================================================
|
|
--- extundelete.orig/src/insertionops.cc
|
|
+++ extundelete/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++)
|