mirror of
git://slackware.nl/current.git
synced 2024-12-27 09:59:16 +01:00
67ddb93bd1
a/pkgtools-15.0-noarch-23.txz: Rebuilt. Removed stray cat and loop kludges for lack of reported size, since this is fixed now in tar. a/tar-1.30-x86_64-3.txz: Rebuilt. Fixed a bug in the nolonezero patch that was evidently causing all of the issues in installpkg that we'd been kludging around (e.g. the "stray cat"). Thanks *very* much to NonNonBa for the patch, and to SeB for the initial analysis of the problem. ap/ghostscript-9.24-x86_64-2.txz: Rebuilt. Applied upstream patch to fix "Filter failed". Thanks to th_r and bamunds. d/gdb-8.2-x86_64-1.txz: Upgraded. d/indent-2.2.12-x86_64-1.txz: Upgraded. isolinux/initrd.img: Rebuilt. usb-and-pxe-installers/usbboot.img: Rebuilt.
31 lines
1.1 KiB
Diff
31 lines
1.1 KiB
Diff
--- ./src/list.c.orig 2017-12-16 15:23:12.000000000 -0600
|
|
+++ ./src/list.c 2018-09-06 16:51:52.982740004 -0500
|
|
@@ -242,15 +242,22 @@
|
|
|
|
if (!ignore_zeros_option)
|
|
{
|
|
- char buf[UINTMAX_STRSIZE_BOUND];
|
|
+
|
|
+ /*
|
|
+ * According to POSIX tar specs, this is wrong, but on the web
|
|
+ * there are some tar specs that can trigger this, and some tar
|
|
+ * implementations create tars according to that spec. For now,
|
|
+ * let's not be pedantic about issuing the warning.
|
|
+ *
|
|
+ * char buf[UINTMAX_STRSIZE_BOUND]; */
|
|
|
|
status = read_header (¤t_header, ¤t_stat_info,
|
|
read_header_auto);
|
|
- if (status == HEADER_ZERO_BLOCK)
|
|
- break;
|
|
- WARNOPT (WARN_ALONE_ZERO_BLOCK,
|
|
- (0, 0, _("A lone zero block at %s"),
|
|
- STRINGIFY_BIGINT (current_block_ordinal (), buf)));
|
|
+ /* if (status == HEADER_ZERO_BLOCK)
|
|
+ * break;
|
|
+ * WARNOPT (WARN_ALONE_ZERO_BLOCK,
|
|
+ * (0, 0, _("A lone zero block at %s"),
|
|
+ * STRINGIFY_BIGINT (current_block_ordinal (), buf))); */
|
|
break;
|
|
}
|
|
status = prev_status;
|