[Bug-tar] [PATCH] xheader: avoid pointer-arith warning

2014-12-16 Thread Bernhard Voelker
GCC-4.8.3 (on openSUSE-13.2) gives the following warnings: xheader.c: In function ‘xheader_string_end’: xheader.c:1030:38: error: pointer of type ‘void *’ used in arithmetic [-Werror=pointer-arith] cp = obstack_next_free (xhdr->stk) - xhdr->string_length - p - 1;

Re: [Bug-tar] [PATCH] xheader: avoid pointer-arith warning

2014-12-16 Thread Bernhard Voelker
On 12/16/2014 06:55 PM, Kamil Dudka wrote: > On Tuesday 16 December 2014 17:50:24 Bernhard Voelker wrote: >> - cp = obstack_next_free (xhdr->stk) - xhdr->string_length - p - 1; >> + cp = obstack_next_free (xhdr->stk); >> + cp -= xhdr->string_length - p - 1;

Re: tar-1.34 released [stable]

2021-10-13 Thread Bernhard Voelker
Hello Sergey, On 2/13/21 12:56, Sergey Poznyakoff wrote: > This is to inform you that GNU tar version 1.34 is available for > download. I don't see the 'release_1_34' tag in Git [1]. Is it possible that you just forgot to push the tag? [1] https://git.savannah.gnu.org/cgit/tar.git/refs/ Thanks &

Re: tar-1.34 released [stable]

2021-10-13 Thread Bernhard Voelker
Hi Sergey, On 10/13/21 20:07, Sergey Poznyakoff wrote: >> I don't see the 'release_1_34' tag in Git [1]. > > Thanks for noticing. Indeed, I forgot it. Pushed it now. great, thanks! Have a nice day, Berny

tests/time01.at failing on i586, ppc and armv7l

2021-10-13 Thread Bernhard Voelker
Hi *, I'm trying to get coreutils-9.0 into openSUSE:Tumbleweed, but the request was denied because tar-1.34 fails to build ... incidentally exactly since the version bump to coreutils-9.0. Details: the following test fails: [ 431s] ## ## [ 431s] ## Summary of the failu

Re: tests/time01.at failing on i586, ppc and armv7l

2021-10-14 Thread Bernhard Voelker
[+Danilo (=downstream maintainer)] Hi Paul, On 10/13/21 23:58, Paul Eggert wrote: > On 10/13/21 13:57, Bernhard Voelker wrote: > >> Is it possible that newer touch(1) from coreutils-9.0 supports more of the >> tricky timestamps >> which tar-1.34 still fails to gr