Fix a typo (s/error/errno/).

This commit is contained in:
Hiroki Sato 2013-07-03 09:50:59 +00:00
parent a05aa38cb1
commit 4099f7e640
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=252557

View File

@ -148,7 +148,7 @@ 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) {
if (errno != EAFNOSUPPORT && error != EPROTONOSUPPORT)
if (errno != EAFNOSUPPORT && errno != EPROTONOSUPPORT)
warn("socket(AF_INET6, SOCK_DGRAM)");
return;
}