Codebase list extundelete / 7cc0859
Add patch to fix FTBFS with new e2fsprogs (Closes: #894645) Hilko Bengen 6 years ago
2 changed file(s) with 14 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 Index: extundelete/src/insertionops.cc
1 ===================================================================
2 --- extundelete.orig/src/insertionops.cc
3 +++ extundelete/src/insertionops.cc
4 @@ -33,7 +33,7 @@ std::ostream& operator<<(std::ostream& o
5 os << "File flags: " << inode.i_flags << std::endl;
6 os << "File version (for NFS): " << inode.i_generation << std::endl;
7 os << "File ACL: " << inode.i_file_acl << std::endl;
8 - os << "Directory ACL: " << inode.i_dir_acl << std::endl;
9 + os << "Directory ACL: " << inode.i_size_high << std::endl;
10 os << "Fragment address: " << inode.i_faddr << std::endl;
11 os << "Direct blocks: ";
12 for (int n = 0; n < EXT2_NDIR_BLOCKS; n++)
00 01_fix_segmentation_fault.patch
1 02_fix_ftbfs.patch