aboutsummaryrefslogtreecommitdiffstats
path: root/package/util-linux/patches/002-fix-endianess.patch
diff options
context:
space:
mode:
authorJohn Crispin <john@openwrt.org>2013-06-21 16:52:52 +0000
committerJohn Crispin <john@openwrt.org>2013-06-21 16:52:52 +0000
commite3dcf2448fa1a8267831b1bd4e236e5f392f7ff9 (patch)
tree3ceb1ab290e2707849d7b9fe7996c15a3894f54a /package/util-linux/patches/002-fix-endianess.patch
parented6e69444ac5d59efe45b86a46e17216af8e2b82 (diff)
downloadupstream-e3dcf2448fa1a8267831b1bd4e236e5f392f7ff9.tar.gz
upstream-e3dcf2448fa1a8267831b1bd4e236e5f392f7ff9.tar.bz2
upstream-e3dcf2448fa1a8267831b1bd4e236e5f392f7ff9.zip
util-linux: move package to package/system/utils
Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 36986
Diffstat (limited to 'package/util-linux/patches/002-fix-endianess.patch')
-rw-r--r--package/util-linux/patches/002-fix-endianess.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/package/util-linux/patches/002-fix-endianess.patch b/package/util-linux/patches/002-fix-endianess.patch
deleted file mode 100644
index 4c59932cda..0000000000
--- a/package/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? */