CVSROOT: /cvs Module name: src Changes by: [email protected] 2017/02/22 06:43:36
Modified files:
sbin/ping : ping.c
Log message:
Unbreak "ping6 -L"
$ ping6 -L ff02::1%em1
ping6: setsockopt IP6_MULTICAST_LOOP: Invalid argument
Unfortunately we have this inconsistency in the sockets API where we need
to pass an unsigned char for IP_MULTICAST_LOOP but we need an unsigned
int for IPV6_MULTICAST_LOOP.
While here, fix a typo in the error message.
OK millert@ florian@
