aboutsummaryrefslogtreecommitdiffstats
path: root/tools/e2fsprogs/patches/004-big_endian_compile_fix.patch
diff options
context:
space:
mode:
authorLuka Perkov <luka@openwrt.org>2012-06-09 17:59:57 +0000
committerLuka Perkov <luka@openwrt.org>2012-06-09 17:59:57 +0000
commit57ce7e58fed136cf01c2ad7d666fd0c9c040c642 (patch)
treee836d3ef379b26ae9b144ff26c32a2adefe295bc /tools/e2fsprogs/patches/004-big_endian_compile_fix.patch
parent17595c437623b5d150b0ab898eb2e4f71671bcce (diff)
downloadmaster-187ad058-57ce7e58fed136cf01c2ad7d666fd0c9c040c642.tar.gz
master-187ad058-57ce7e58fed136cf01c2ad7d666fd0c9c040c642.tar.bz2
master-187ad058-57ce7e58fed136cf01c2ad7d666fd0c9c040c642.zip
[tools] e2fsprogs: update to 1.42.3
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32142 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'tools/e2fsprogs/patches/004-big_endian_compile_fix.patch')
-rw-r--r--tools/e2fsprogs/patches/004-big_endian_compile_fix.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/tools/e2fsprogs/patches/004-big_endian_compile_fix.patch b/tools/e2fsprogs/patches/004-big_endian_compile_fix.patch
deleted file mode 100644
index 9c3e3360e7..0000000000
--- a/tools/e2fsprogs/patches/004-big_endian_compile_fix.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-From: Theodore Ts'o <tytso@mit.edu>
-Date: Fri, 17 Dec 2010 03:11:43 +0000 (-0500)
-Subject: libext2fs: Fix compile bug on big-endian architectures
-X-Git-Url: http://git.kernel.org/?p=fs%2Fext2%2Fe2fsprogs.git;a=commitdiff_plain;h=9098c986b64bb65a2b7fcd2724a400ba1f451f6b
-
-libext2fs: Fix compile bug on big-endian architectures
-
-Addresses-Sourceforge-Bug: #3138115
-
-Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
----
-
-diff --git a/lib/ext2fs/swapfs.c b/lib/ext2fs/swapfs.c
-index 6f6cec2..12427e0 100644
---- a/lib/ext2fs/swapfs.c
-+++ b/lib/ext2fs/swapfs.c
-@@ -72,7 +72,7 @@ void ext2fs_swap_super(struct ext2_super_block * sb)
- sb->s_flags = ext2fs_swab32(sb->s_flags);
- sb->s_kbytes_written = ext2fs_swab64(sb->s_kbytes_written);
- sb->s_snapshot_inum = ext2fs_swab32(sb->s_snapshot_inum);
-- sb->s_snapshot_id = ext2fs_swab32(s_snapshot_id);
-+ sb->s_snapshot_id = ext2fs_swab32(sb->s_snapshot_id);
- sb->s_snapshot_r_blocks_count =
- ext2fs_swab64(sb->s_snapshot_r_blocks_count);
- sb->s_snapshot_list = ext2fs_swab32(sb->s_snapshot_list);
-