diff options
author | John Crispin <blogic@openwrt.org> | 2013-06-21 16:52:52 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2013-06-21 16:52:52 +0000 |
commit | 6501c4d0da29a3294ae18e6fcf69e7a6df294098 (patch) | |
tree | d1991c41e8f7d3b7f8d114744ab37c91747d814b /package/system/utils/util-linux/patches/002-fix-endianess.patch | |
parent | b7ca061d02d0ab42b6217714f5fbf190a9ae407a (diff) | |
download | upstream-6501c4d0da29a3294ae18e6fcf69e7a6df294098.tar.gz upstream-6501c4d0da29a3294ae18e6fcf69e7a6df294098.tar.bz2 upstream-6501c4d0da29a3294ae18e6fcf69e7a6df294098.zip |
util-linux: move package to package/system/utils
Signed-off-by: John Crispin <blogic@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36986 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/system/utils/util-linux/patches/002-fix-endianess.patch')
-rw-r--r-- | package/system/utils/util-linux/patches/002-fix-endianess.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/package/system/utils/util-linux/patches/002-fix-endianess.patch b/package/system/utils/util-linux/patches/002-fix-endianess.patch new file mode 100644 index 0000000000..4c59932cda --- /dev/null +++ b/package/system/utils/util-linux/patches/002-fix-endianess.patch @@ -0,0 +1,13 @@ +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? */ |