summaryrefslogtreecommitdiff
path: root/system/parted/bsd-endian.patch
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2022-02-06 18:37:43 -0600
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2022-05-01 17:05:51 -0500
commit13566a2f988c3c800a5e1651e248969e37c1e1d0 (patch)
tree41794d36cd441b0720d33f39b10fc9f49c5a8b71 /system/parted/bsd-endian.patch
parent2d2dc33f91a1ba3b4bc5d7798ca1386a5bad44a1 (diff)
downloadpackages-13566a2f988c3c800a5e1651e248969e37c1e1d0.tar.gz
packages-13566a2f988c3c800a5e1651e248969e37c1e1d0.tar.bz2
packages-13566a2f988c3c800a5e1651e248969e37c1e1d0.tar.xz
packages-13566a2f988c3c800a5e1651e248969e37c1e1d0.zip
system/parted: Update to 3.4, take
Diffstat (limited to 'system/parted/bsd-endian.patch')
-rw-r--r--system/parted/bsd-endian.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/system/parted/bsd-endian.patch b/system/parted/bsd-endian.patch
deleted file mode 100644
index 6e5e13c0e..000000000
--- a/system/parted/bsd-endian.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-See-Also: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=31923
-
---- parted-3.2/libparted/labels/bsd.c.old 2014-06-15 18:17:43.000000000 +0000
-+++ parted-3.2/libparted/labels/bsd.c 2019-08-05 05:48:52.914401379 +0000
-@@ -364,7 +364,7 @@
- max_part = i;
- }
-
-- label->d_npartitions = PED_CPU_TO_LE16 (max_part) + 1;
-+ label->d_npartitions = PED_CPU_TO_LE16 (max_part + 1);
- label->d_checksum = xbsd_dkcksum (label);
-
- alpha_bootblock_checksum (bsd_specific->boot_code);