mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
Skip nd6 line with no warning message when the system does not support
INET6. Spotted by: flo
This commit is contained in:
parent
ce228dab70
commit
8a3beec66e
1 changed files with 4 additions and 2 deletions
|
|
@ -148,12 +148,14 @@ nd6_status(int s)
|
|||
memset(&nd, 0, sizeof(nd));
|
||||
strncpy(nd.ifname, ifr.ifr_name, sizeof(nd.ifname));
|
||||
if ((s6 = socket(AF_INET6, SOCK_DGRAM, 0)) < 0) {
|
||||
warn("socket(AF_INET6, SOCK_DGRAM)");
|
||||
if (errno != EPROTONOSUPPORT)
|
||||
warn("socket(AF_INET6, SOCK_DGRAM)");
|
||||
return;
|
||||
}
|
||||
error = ioctl(s6, SIOCGIFINFO_IN6, &nd);
|
||||
if (error) {
|
||||
warn("ioctl(SIOCGIFINFO_IN6)");
|
||||
if (errno != EPFNOSUPPORT)
|
||||
warn("ioctl(SIOCGIFINFO_IN6)");
|
||||
close(s6);
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue