Re: Ash glob symlink regression when using libc glob

2017-10-30 Thread Denys Vlasenko
On Sun, Oct 29, 2017 at 7:43 PM, Lauri Kasanen wrote: > Hi, > > It was reported the following case fails with bb 1.27.2: > > ln -s nonexistent mylink > mv myli* someother > > It also fails with master. I bisected it to > b3f29b452a660a7293162897424bed205f7f9147, "ash: use glob()

Re: [PATCH 5/7] {udp_io, traceroute}: Standardise IPv6 PKTINFO handling to be portable

2017-10-30 Thread Denys Vlasenko
Applied, thanks! On Sat, Oct 7, 2017 at 7:53 PM, James Clarke wrote: > The current standard (RFC 3542) is for IPV6_RECVPKTINFO to be given to > setsockopt, and IPV6_PKTINFO to be used as the packet type. Previously, > RFC 2292 required IPV6_PKTINFO to be used for both, but RFC

Re: [PATCH 2/7] df: Use statvfs instead of non-standard statfs

2017-10-30 Thread Denys Vlasenko
Applied, thanks! On Sat, Oct 7, 2017 at 7:53 PM, James Clarke wrote: > Platforms differ on what their implementations of statfs include. > Importantly, FreeBSD's does not include a f_frsize member inside struct > statfs. However, statvfs is specified by POSIX and includes

Re: [PATCH 4/7] xfuncs: Handle missing non-POSIX termios constants

2017-10-30 Thread Denys Vlasenko
Applied, thanks! On Sun, Oct 8, 2017 at 5:01 PM, Kang-Che Sung wrote: > On Sun, Oct 8, 2017 at 10:34 PM, Ralf Friedl wrote: >> >> Because the way the line is now is one line with 8 values. Changing that to >> use ifdefs for each value would change

Re: [PATCH 3/7] networking: Fall back on IPPROTO_RAW when SOL_RAW is not defined

2017-10-30 Thread Denys Vlasenko
Applied, thanks! On Sat, Oct 7, 2017 at 7:53 PM, James Clarke wrote: > Signed-off-by: James Clarke > --- > networking/ping.c | 8 > networking/traceroute.c | 8 > 2 files changed, 16 insertions(+) > > diff --git a/networking/ping.c