diff options
author | John Crispin <john@openwrt.org> | 2012-02-14 19:07:07 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2012-02-14 19:07:07 +0000 |
commit | 58b26b60d338e757f3dd88742a3166a80404d8f0 (patch) | |
tree | 0d905ec4b03cd296078386793cfcf058c170736b /package/e2fsprogs/patches/100-upstream_fix.patch | |
parent | 7416a5f0aa7bd9a239baf7ded112d2339884aa8a (diff) | |
download | upstream-58b26b60d338e757f3dd88742a3166a80404d8f0.tar.gz upstream-58b26b60d338e757f3dd88742a3166a80404d8f0.tar.bz2 upstream-58b26b60d338e757f3dd88742a3166a80404d8f0.zip |
update e2fsprogs
Update e2fsprogs to the last upstream version 1.42.
blkid works fine without 100_add_missing_libpthread_for_blkid.patch.
Signed-off-by: Luka Perkov <openwrt@lukaperkov.net>
SVN-Revision: 30535
Diffstat (limited to 'package/e2fsprogs/patches/100-upstream_fix.patch')
-rw-r--r-- | package/e2fsprogs/patches/100-upstream_fix.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/package/e2fsprogs/patches/100-upstream_fix.patch b/package/e2fsprogs/patches/100-upstream_fix.patch new file mode 100644 index 0000000000..48555a5e46 --- /dev/null +++ b/package/e2fsprogs/patches/100-upstream_fix.patch @@ -0,0 +1,22 @@ +--- a/e2fsck/pass1.c ++++ b/e2fsck/pass1.c +@@ -545,7 +545,7 @@ void e2fsck_pass1(e2fsck_t ctx) + int i; + __u64 max_sizes; + ext2_filsys fs = ctx->fs; +- ext2_ino_t ino; ++ ext2_ino_t ino = 0; + struct ext2_inode *inode; + ext2_inode_scan scan; + char *block_buf; +--- a/e2fsck/pass1b.c ++++ b/e2fsck/pass1b.c +@@ -267,7 +267,7 @@ struct process_block_struct { + static void pass1b(e2fsck_t ctx, char *block_buf) + { + ext2_filsys fs = ctx->fs; +- ext2_ino_t ino; ++ ext2_ino_t ino = 0; + struct ext2_inode inode; + ext2_inode_scan scan; + struct process_block_struct pb; |