aboutsummaryrefslogtreecommitdiffstats
path: root/package/utils/util-linux/patches/002-fix-endianess.patch
diff options
context:
space:
mode:
authorLuka Perkov <luka@openwrt.org>2014-03-24 00:19:44 +0000
committerLuka Perkov <luka@openwrt.org>2014-03-24 00:19:44 +0000
commitbf98d8125923b60502c7013ff2079e50a108e0ae (patch)
tree807b442481f95b2c4fbce6726df16d1e53f32445 /package/utils/util-linux/patches/002-fix-endianess.patch
parentdeec5146072d2211a3562b06bdc28bdb0c615acf (diff)
downloadupstream-bf98d8125923b60502c7013ff2079e50a108e0ae.tar.gz
upstream-bf98d8125923b60502c7013ff2079e50a108e0ae.tar.bz2
upstream-bf98d8125923b60502c7013ff2079e50a108e0ae.zip
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.patch13
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 4c59932cda..0000000000
--- 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? */