diff options
author | Luka Perkov <luka@openwrt.org> | 2014-03-24 00:19:44 +0000 |
---|---|---|
committer | Luka Perkov <luka@openwrt.org> | 2014-03-24 00:19:44 +0000 |
commit | bf98d8125923b60502c7013ff2079e50a108e0ae (patch) | |
tree | 807b442481f95b2c4fbce6726df16d1e53f32445 /package/utils/util-linux/patches/002-fix-endianess.patch | |
parent | deec5146072d2211a3562b06bdc28bdb0c615acf (diff) | |
download | mtk-20170518-bf98d8125923b60502c7013ff2079e50a108e0ae.zip mtk-20170518-bf98d8125923b60502c7013ff2079e50a108e0ae.tar.gz mtk-20170518-bf98d8125923b60502c7013ff2079e50a108e0ae.tar.bz2 |
util-linux: update to 2.24.1
Signed-off-by: Luka Perkov <luka@openwrt.org>
SVN-Revision: 40010
Diffstat (limited to 'package/utils/util-linux/patches/002-fix-endianess.patch')
-rw-r--r-- | package/utils/util-linux/patches/002-fix-endianess.patch | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/package/utils/util-linux/patches/002-fix-endianess.patch b/package/utils/util-linux/patches/002-fix-endianess.patch deleted file mode 100644 index 4c59932..0000000 --- a/package/utils/util-linux/patches/002-fix-endianess.patch +++ /dev/null @@ -1,13 +0,0 @@ -Index: util-linux-2.21.2/libblkid/src/superblocks/swap.c -=================================================================== ---- util-linux-2.21.2.orig/libblkid/src/superblocks/swap.c 2012-05-15 13:51:45.814410455 +0200 -+++ util-linux-2.21.2/libblkid/src/superblocks/swap.c 2013-06-12 23:23:03.270742199 +0200 -@@ -48,7 +48,7 @@ - - /* SWAPSPACE2 - check for wrong version or zeroed pagecount */ - if (strcmp(version, "2") == 0 && -- (hdr->version != 1 || hdr->lastpage == 0)) -+ ((hdr->version != 1 && swab32(hdr->version) != 1) || hdr->lastpage == 0)) - return -1; - - /* arbitrary sanity check.. is there any garbage down there? */ |